For purposes of my project i need to some linq query to an entitie, i am using expression factory methods to build dynamic filter predicate.
Considering this code :
public class mother{
public int age {get; set;}
public string name {get; set;}
public child child {get; set;}
}
public class child{
public int age {get; set;}
public string name {get; set;}
}
//predicate builder
public static Expression<Func<T, bool>> GetChildNamePredicat<T>(){
var param = Expression.Parameter(typeof(T), "param");
// age property of mother class
var motherAgeProperty = Expression.MakeMemberAccess(param, typeof(T).GetProperty("age"));
// name property of child class
var motherChildProperty = Expression.MakeMemberAccess(param, typeof (t).GetProperty("child"));
var childNameProperty = Expression.MakeMemberAccess(motherChildProperty , typeof (child).GetProperty("name "));
BinaryExpression motherAgeCondition;
BinaryExpression childNameCondition;
//building condition mother age >= 40 and child name = junior
var motherAgeConst = Expression.Constant(40, typeof(int));
var childNameConst = Expression.Constant("junior", typeof(string));
motherAgeCondition = Expression.GreaterThanOrEqual(motherAgeProperty, motherAgeConst);
childNameCondition= Expression.Equal(childNameProperty, childNameConst);
var mergeCondition = Expression.AndAlso(motherAgeCondition , childNameCondition);
//return expression
return Expression.Lambda<Func<T, bool>>(mergeCondition , param);
}
var myPredicate = GetChildNamePredicat<mother>();
This code compile with success but it seem to not be fonctionnal, no result... By using variable's spy on "myPredicate", i can see lambda debug view like this :
.Lambda
#Lambda1<System.Func`2[myNameSpace.mother,System.Boolean]>(myNameSpace.mothe $e) { $e.age >= 40 && ($e.child).name == "junior" }
($e.child) ... it so strange
Do you know another solution or/and have any idea about accessing to child name property from mother parameter ?
Thx for advance!
einMakeMemberAccessformotherChildProperty, notparam- is this a typo? – Nicholas Butler Jan 8 at 10:34motherover 40 with achildcalled "junior"? – Nicholas Butler Jan 8 at 10:39myPredicatein your LINQ query Where clause with a normal lambda? – Nicholas Butler Jan 8 at 10:46