abp中iquery类使用orderBy接口功能报错问题

在后端写排序时,当使用如下OrderBy(排序字段)时,只引用System.Linq时如下错误:

abp中iquery类使用orderBy接口功能报错问题_第1张图片

只是因为缺少一个引用:System.Linq.Dynamic.Core 

在如下类文件中引用 System.Linq.Dynamic.Core 

abp中iquery类使用orderBy接口功能报错问题_第2张图片

注意:切记不能删掉System.Linq的引用,否则使用以下方法时会报类似不能把IEnumerable类型转换成System.Linq.IQueryable的错误

abp中iquery类使用orderBy接口功能报错问题_第3张图片

你可能感兴趣的:(Abp,.netcore,c#)