vote up 2 vote down star
2

I have a this line of code:

var predicate = Expression.Lambda<Func<TEntityType, bool>>(body, param);

where TEntityType is a generic parm.

However, I don't have generic parm available. I do have:

Type _EntityType;

What is the non-generic syntax for Expression.Lambda is this case?

Thanks

flag

29% accept rate

1 Answer

vote up 4 vote down check

There's an overload for Expression.Lambda that takes the type of the expression body, so you just need to create the type dynamically before calling that overload.

type lambdaType = typeof(Func<,>).MakeGenericType(_EntityType, typeof(bool));

var predicate = Expression.Lambda(lambdaType, body, param);
link|flag
Ok... Thankss. The compiler accepts this syntax. – theBruce May 13 at 21:35
Thanks very helpful. – Graphain Sep 9 at 2:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.