Hi all. I want to be able to specify the properties to get populated/updated in the linq expression. Something in the following fashion:
Proxy.UpdateEmployee(List<string> propertiesNames)
Proxy.GetEmployee() //inside the method populate only certain properties
The return values must be of known type(no anonymous types accepted).
DLINQ enable to select by specifying properties' names but the result is IQueryable
interface and I'm unable to AsEnumerable
() it in order to build the known type query afterwards.