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]'.
VARIABLE... are you trying to do this on any entity (for example, other than Client.ClientInvoices?) – Tejs May 13 '11 at 15:39