WCF Data Services + LINQ Projection into a custom type
I’m trying to project parts of a Display and its list of locations from a WCF Data service into a custom type. Is this doable in WCF Data Services in a Silver... [read more]
Linq projection that flattens a list into a deliminated string
I am trying to concat and comma deliminated (or space) a list and project it. I have some sample code below. public class Friend { public string Name { get; set... [read more]
LINQ Projection in Entity Framework
I posted a couple of questions about filtering in an eager loading query, and I guess the EF does not support filtering inside of the Include statement, so I ca... [read more]