I created a generic lambda expression function like below.
I try to create a dynamic filter query.
public Expression<Func<TSource, bool>> GenericExpression<TSource>(string propertyName, string searchTerm)
{
//x=>x.Name.Contains("Emre");
var parameter = Expression.Parameter(typeof(TSource), "x");
var property = Expression.Property(parameter,propertyName);
var search = Expression.Constant(searchTerm,typeof(string));
MethodInfo method = typeof(string).GetMethod("Contains", new[] { typeof(string) });
var containsMethodExp = Expression.Call(property, method, search);
return Expression.Lambda<Func<TSource, bool>>(containsMethodExp, parameter);
}
I get an error when call GenericExpression function. The error message says that :
Method 'Boolean Contains(System.String)' declared on type 'System.String' cannot be called with instance of type 'System.Int32'
I do not understand error detail.
Could you please explain
Thank you
Error fixed. We should check argument type before calling method via PropertyInfo.PropertyType. It works now.