So I have a query I'm constructing using Entity Framework, LINQ. Depending on the search parameter, and the type of the parameter being searched.
I have created a function like this:
public static IQueryable<T> WhereInt<T>(this IQueryable<T> query, string propertyName, string contains)
{
var parameter = Expression.Parameter(typeof(T), "type");
var propertyExpression = Expression.Property(parameter, propertyName);
MethodInfo method = typeof(string).GetMethod("First");
var someValue = Expression.Constant(contains, typeof(string));
var containsExpression = Expression.Call(propertyExpression, method, someValue);
return query.Where(Expression.Lambda<Func<T, bool>>(containsExpression, parameter));
}
Used as such:
WhereInt(DCs, searchfield, search);
searchfield could be userid, username, integer or string, and ideally I want to do:
searchfield.value == search.toInt32()
sort of feature.
I want to also make DateTime types searchable too. Maybe I'll make a WhereDateTime for that.
I get an error on var containsExpression = Expression.Call(propertyExpression, method, someValue);
This works fine with strings, but fails with the error:
Value cannot be null.
Parameter name: method
Firstwhich is why GetMethod("Firts") returns null. What are you trying to do. COuld you provide sample input and expected result – Rune FS Oct 22 '12 at 17:52typeof(string).GetMethod("First")you are saying you wish to compare ints but are looking for a method on string and what did you expect 1.First(someVariable) to return? – Rune FS Oct 22 '12 at 19:03