【发布时间】:2020-02-22 06:43:07
【问题描述】:
我为过滤查询创建了新的 IQueryable 扩展方法。 在手动添加到我的查询的扩展方法内容中,它正在工作。 但它不适用于 IQueryable 扩展方法。 这是怎么发生的?
我的扩展 IQueryables:
public static IQueryable<TSource> WhereIf<TSource>(this IQueryable<TSource> source, bool condition, Expression<Func<TSource, bool>> predicate)
{
if (condition)
return source.Where(predicate);
else
return source;
}
public static IQueryable<ProductPrice> GetDynamicWhere(this IQueryable<ProductPrice> source,List<ProductFilterModel> productFilters)
{
Func<string, object> GetValue = (string key) => productFilters.Where(y => y.key == key).Select(x => x.value).FirstOrDefault();
var minPrice = GetValue("min-price");
var maxPrice = GetValue("max-price");
source.Where(x=>x.IsDeleted==false)
.WhereIf(minPrice != null, x => x.ProductVariant.ProductPrices.Where(y => y.IsDeleted == false).Select(y => y.Price).FirstOrDefault() >= Convert.ToInt32(minPrice.ToString()))
.WhereIf(maxPrice != null, x => x.ProductVariant.ProductPrices.Where(y => y.IsDeleted == false).Select(y => y.Price).FirstOrDefault() <= Convert.ToInt32(minPrice.ToString()));
return source;
}
不工作,这个查询返回了所有数据:
MyDbContext.ProductPrices
//.AsQueryable()
.GetDynamicWhere(filter)
.Include(x => x.ProductVariant.Product)
.Include(x => x.ProductVariant.Variant)
.Include(x => x.ProductVariant.Variant.VariantType)
.ToList();
但这是可行的(GetDynamicWhere 扩展方法中的代码相同):
MyDbContext.ProductPrices
.Where(x=>x.IsDeleted==false)
.WhereIf(minPrice != null, x => x.ProductVariant.ProductPrices.Where(y => y.IsDeleted == false).Select(y => y.Price).FirstOrDefault() >= Convert.ToInt32(minPrice.ToString()))
.WhereIf(maxPrice != null, x => x.ProductVariant.ProductPrices.Where(y => y.IsDeleted == false).Select(y => y.Price).FirstOrDefault() <= Convert.ToInt32(minPrice.ToString()))
.ToList();
【问题讨论】:
-
您没有在您的方法中分配回源
GetDynamicWhere
标签: c# linq entity-framework-core extension-methods iqueryable