我正在构建一个基于SearchObject的相当大的过滤器,它有50多个可以搜索的字段。
我没有为这些中的每一个单独构建我的where子句,而是认为我会使用一些轻微的手并尝试构建自定义属性来提供必要的信息,然后使用反射来构建我的每个谓词语句(使用LinqKit btw )。麻烦的是,代码在反射代码中找到适当的值并成功构建属性的谓词,但“where”似乎没有实际生成,我的查询总是返回0条记录。
属性很简单:
[AttributeUsage(AttributeTargets.Property, AllowMultiple=true)]
public class FilterAttribute: Attribute
{
public FilterType FilterType { get; set; } //enum{ Object, Database}
public string FilterPath { get; set; }
//var predicate = PredicateBuilder.False<Metadata>();
}
这是构建查询的方法:
public List<ETracker.Objects.Item> Search(Search SearchObject, int Page, int PageSize)
{
var predicate = PredicateBuilder.False<ETracker.Objects.Item>();
Type t = typeof(Search);
IEnumerable<PropertyInfo> pi = t.GetProperties();
string title = string.Empty;
foreach (var property in pi)
{
if (Attribute.IsDefined(property, typeof(FilterAttribute)))
{
var attrs = property.GetCustomAttributes(typeof(FilterAttribute),true);
var value = property.GetValue(SearchObject, null);
if (property.Name == "Title")
title = (string)value;
predicate.Or(a => GetPropertyVal(a, ((FilterAttribute)attrs[0]).FilterPath) == value);
}
}
var res = dataContext.GetAllItems().Take(1000)
.Where(a => SearchObject.Subcategories.Select(b => b.ID).ToArray().Contains(a.SubCategory.ID))
.Where(predicate);
return res.ToList();
}
SearchObject非常简单:
public class Search
{
public List<Item> Items { get; set; }
[Filter(FilterType = FilterType.Object, FilterPath = "Title")]
public string Title { get; set; }
...
}
任何建议都将不胜感激。如果有人有更好的选择(或至少有一个有效的选择),我可能会走错方向并且不会冒犯。
答案 0 :(得分:1)
您没有在任何地方分配谓词。将行更改为:
predicate = predicate.Or(a => GetPropertyVal(a, ((FilterAttribute)attrs[0]).FilterPath) == value);