I have a function that builds simple dynamic Expression for ObjectQuery Where Clause and it works well:

static Expression CreateExpression<TElement, TValue>(Expression<Func<TElement, TValue>> valueSelector, object propertyName, object propertyValue)
{
    ParameterExpression p = valueSelector.Parameters.Single();
    PropertyInfo property = typeof(TElement).GetProperty(propertyName.ToString());
    ConstantExpression right = Expression.Constant(propertyValue, propertyValue.GetType());
    MemberExpression left = Expression.Property(p, property);
    return Expression.GreaterThan(left, right);
}

Now I need to assemble something more complex and it's where I've got stuck. It's best to be described in code, basically the part shown below I would like to make in similiar way as above, but how to do it ?

this.ObjectContext
    .Include("Client")
    .Include("Client.ClientInvoices")
    .Subscription
    .Where(t => t.Client
                 .ClientInvoices
                 .Where(i => i.ClientInvoiceID == VARIABLE)
                 .Count() > 0);

Basically I need to assemble this piece of code and return as Expression:

t => t.Client
      .ClientInvoices
      .Where(i => i.ClientInvoiceID == VARIABLE)
      .Count() > 0

Thanks in advance

---- EDIT ----

The problem is that I have a loop which builds array of filters and aggregates into single Expression with different conditions. Building expression without nested Where and Count conditions is fairly easy (I've shown a sample function), but when it comes to composing condition such as t=>t.XXX.YYYY.Where(...).Count() > 0... I do not understand how to compose it and my attempt to do something like this:

var filterExpressions = new List<Expression>();
...
// Within Expression building loop
Expression<Func<ClientSubscription, bool>> e = t => t.Client.ClientInvoices.Where(i => i.ClientInvoiceID == res).Count() > 0;
expression = Expression.Lambda<Func<ClientSubscription, bool>>(e.Body, p);
...
filterExpression.Add(expression);
...
// Aggregation
var filterBody = filterExpression.Aggregate<Expression>((accumulate, equal) => Expression.And(accumulate, equal));

Failed:

Additional information: The binary operator And is not defined for the types 'System.Boolean' and 'System.Func`2[SilverlightApp.Web.ClientSubscription,System.Boolean]'.
link|improve this question
That looks easy enough to do with a method by substituting a variable for VARIABLE... are you trying to do this on any entity (for example, other than Client.ClientInvoices?) – Tejs May 13 '11 at 15:39
The problem is that I have a loop which builds array of filters and aggregates into single Expression with different conditions. Building expression without nested Where and Count conditions is fairly easy (I've shown a sample function), but when it comes to composing condition such as t=>t.XXX.YYYY.Where(...).Count() > 0... I do not understand how to compose it and my attempt to do something like this: – Max May 13 '11 at 15:49
Expression<Func<Subscription, bool>> e = t => t.Client.ClientInvoices.Where(i => i.ClientInvoiceID == res).Count() > 0; Expression expression = Expression.Lambda<Func<ClientSubscription, bool>>(e.Body, p); ---Failed--- Additional information: The binary operator And is not defined for the types 'System.Boolean' and 'System.Func`2[Web.ClientSubscription,System.Boolean]'. – Max May 13 '11 at 15:52
So the end result after generating and aggregating expressions look like this: t=> ((t.XXX == NNN) OR (t.YYY == MMM)) AND (...) – Max May 13 '11 at 15:56
Hrm, that might be a bit out of my league then. – Tejs May 13 '11 at 15:58
show 3 more comments
feedback

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

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.