.netcore: Only sources that implement IAsyncEnumerable can be used for Entity Framework asynchronous operations
解决方案:
查看命名空间,把命名空间 using System.Data.Entity;
改为如下:
using Microsoft.EntityFrameworkCore;
本文来自博客园,转载请注明原文链接:https://www.cnblogs.com/keeplearningandsharing/p/15294184.html