好的设置上下文我正在使用使用此类的表达式树构建动态Linq搜索子句
public class HomeTableInvoice {
public int Sys_InvoiceID { get; set; }
public bool Turnover { get; set; }
public int FK_StatusID { get; set; }
public string InvoiceNumber { get; set; }
public DateTime InvoiceDate { get; set; }
public string DocType { get; set; }
public ICollection<InvoiceCustomFields> InvoiceCustomFields { get; set; }
}
我设法让一切正常,我使用的参数是HomeTableInvoice,我可以使用
获取表达式的属性var parameter = Expression.Parameter(typeof(HomeTableInvoice), "invoice");
prop = Expression.Property(param, filter.SysName);
filter.SysName是我想要过滤的字段。
尝试在底部为ICollection构建表达式时出现问题。 InvoiceCustomFields类包含
public class InvoiceCustomFields : CustomFieldsBase {
public int? FK_SysInvoiceID { get; set; }
public string FK_CustomFieldHeader { get; set; }
public string Value { get; set; }
}
我试图访问FkCustomFieldHeader的字符串和值的字符串,所以当我查询例如条件看起来像
where InvoiceNumber == 34 AndAlso (Invoice.InvoiceCustomField.FK_CustomFieldHeader == "Test" && Invoice.InvoiceCustomField.FK_CustomFieldHeader.Value == 42)
我尝试过使用
prop = Expression.PropertyOrField(Expression.PropertyOrField(param, "InvoiceCustomFields"), "FK_CustomFieldHeader");
但它会抛出此错误
FK_CustomFieldHeader' is not a member of type 'System.Collections.Generic.ICollection`1[APData.Audit.Entityframework.Entities.InvoiceCustomFields]'
非常感谢任何帮助
- 编辑 -
在尝试伊万的答案后,我收到了错误
No generic method 'Any' on type 'System.Linq.Enumerable' is compatible with the supplied type arguments and arguments
然后我尝试了这个
prop = Expression.PropertyOrField(parameter, "InvoiceCustomFields");
var queryableType = typeof(Enumerable);
var whereMethod = queryableType.GetMethods()
.First(m => {
var parameters = m.GetParameters().ToList();
return m.Name == "Any" && m.IsGenericMethodDefinition &&
parameters.Count == 2;
});
MethodInfo methoInfo = whereMethod.MakeGenericMethod(prop.Type);
var x = Expression.Call(methoInfo, Expression.PropertyOrField(parameter, "InvoiceCustomFields"), whereQuery);
然后抛出
Expression of type `'System.Collections.Generic.ICollection`1[InvoiceCustomFields]' cannot be used for parameter of type 'System.Linq.IQueryable`1[System.Collections.Generic.ICollection`1[InvoiceCustomFields]]' of method 'Boolean Any[ICollection`1](System.Linq.IQueryable`1[System.Collections.Generic.ICollection`1[InvoiceCustomFields]], System.Linq.Expressions.Expression`1[System.Func`2[System.Collections.Generic.ICollection`1[.InvoiceCustomFields],System.Boolean]])`
答案 0 :(得分:3)
让我们看看它是不是动态的。以下内容:
Expression<Func<HomeTableInvoice, bool>> predicate = invoice =>
invoice.InvoiceCustomField.FK_CustomFieldHeader == "Test" &&
invoice.InvoiceCustomField.Value == "42";
不是有效的表达式。
你真正需要做的是这样的事情:
Expression<Func<HomeTableInvoice, bool>> predicate = invoice =>
invoice.InvoiceCustomFields.Any(field =>
field.InvoiceCustomField.FK_CustomFieldHeader == "Test" &&
field.InvoiceCustomField.Value == "42");
以下是如何动态构建(希望您可以根据需要调整它以用变量替换硬编码部分):
var parameter = Expression.Parameter(typeof(HomeTableInvoice), "invoice");
var fieldParameter = Expression.Parameter(typeof(InvoiceCustomFields), "field");
var anyPredicate = Expression.Lambda(
Expression.AndAlso(
Expression.Equal(
Expression.PropertyOrField(fieldParameter, "FK_CustomFieldHeader"),
Expression.Constant("Test")),
Expression.Equal(
Expression.PropertyOrField(fieldParameter, "Value"),
Expression.Constant("42"))),
fieldParameter);
var fieldCondition = Expression.Call(
typeof(Enumerable), "Any", new[] { fieldParameter.Type },
Expression.PropertyOrField(parameter, "InvoiceCustomFields"), anyPredicate);
// You can use the fieldCondition in your combinator,
// the following is just to complete the example
var predicate = Expression.Lambda<Func<HomeTableInvoice, bool>>(fieldCondition, parameter);
// Test
var input = new List<HomeTableInvoice>
{
new HomeTableInvoice
{
InvoiceNumber = "1",
InvoiceCustomFields = new List<InvoiceCustomFields>
{
new InvoiceCustomFields { FK_CustomFieldHeader = "Test", Value = "42" }
}
},
}.AsQueryable();
var output = input.Where(predicate).ToList();