I have the following code:
public static class CardView {
public static object Column<TModel, TResult>(Func<TModel, TResult> field) {
return null;
}
}
public class Person
{
public string Name { get; set; }
public bool Gender { get; set; }
}
void Main()
{
var model = new Person() { Name = "Andre", Gender = true };
var b = CardView.Column(model => model.Name); // ERROR
// The type arguments for method 'UserQuery.CardView.Column<TModel,TResult>(System.Func<TModel,TResult>)' cannot be inferred from the usage. Try specifying the type arguments explicitly.
}
For some reason it's not able to infer the generic types for the Column method. I need to know why. I can't give up the type inference and specify the types myself because it's just a case study for a large problem where it will be indispensable.
EDIT
I misspelled the code =/ just fixed it
TModel? The supplied lambda would be "valid" for any class that has aNameproperty. – Damien_The_Unbeliever Dec 7 '11 at 15:45.Columnmethod to determine you meanmto representmodel? – Marc Dec 7 '11 at 15:46new List<Person>().Select(m => m.Name)which will give you an `IEnumerable<string> without relying on the Person object. – Ivaylo Slavov Dec 7 '11 at 15:50