Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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!

share|improve this question
You've used the parameter e in MakeMemberAccess for motherChildProperty, not param - is this a typo? – Nicholas Butler Jan 8 at 10:34
exact i edit ... thx! – bor1s Jan 8 at 10:36
Your expression looks fine - are you sure your data source contains a mother over 40 with a child called "junior"? – Nicholas Butler Jan 8 at 10:39
Yes, i verifying by doing query on my db with SqlServer Management Studio. – bor1s Jan 8 at 10:44
What happens if you replace myPredicate in your LINQ query Where clause with a normal lambda? – Nicholas Butler Jan 8 at 10:46
show 2 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.