我正在尝试编写一个C#扩展方法,它应该采用谓词并返回IQueryable,这样我就可以重用一个复杂的 Where Predicate
以下是我正在看的内容
public static IEnumerable<T> AddComplexWhere<T>(this IEnumerable<T> query, DBContext context, Func<T, string> PermissionKeyColumn)
{
return query.Where(pp => context.Permissions
.Where(p => /*PermissionKeyColumn is in Permissions Table p.PermissionKey ??????*/)
.Where(p => true/* another complicated where*/).Any());
}
用法将是
context.orders.AddComplexWhere(context,o=>o.permissionKey).ToList()..
这样我可以继续重复使用
答案 0 :(得分:1)
要实现这一目标,您需要使用
public static IEnumerable<T> AddComplexWhere<T>(this IEnumerable<T> query, DBContext context, Expression<Func<T, bool>> expression)
{
return query.Where(expression).Any());
}
以下是示例:
context.orders.AddComplexWhere(context,o=>o.permissionKey == something).ToList()..
修改完成后,您的代码应该正常工作:
LWP::UserAgent