EFCore异步查询报错
先看代码:
使用EFCore异步查询时会发生异常报错,执行到ToListAsync时莫名奇妙会抛出异常:
请求中发生异常: The source IQueryable doesn't implement IDbAsyncEnumerable<JOCAPI.DB.Tables.tce_data_purchase_entry>. Only sources that implement IDbAsyncEnumerable can be used for Entity Framework asynchronous operations. For more details see http://go.microsoft.com/fwlink/?LinkId=287068.
解决方案
检查代码引用,是否引用了
using System.Data.Entity;
如果是替换为:
using Microsoft.EntityFrameworkCore;
版权声明:本文为YES开发框架网发布内容,转载请附上原文出处连接
YESWEB 张国生