I have this line of code:
var predicate = Expression.Lambda<Func<TEntityType, bool>>(body, param);
where TEntityType is a common parm.
However, I do not have universal parma. I have:
Type _EntityType;
What is not the general syntax of an Expression.Lambda expression?
thanks
source
share