Hi there, I'm in the process of building a custom linq provider, and would like to know about the possibility of mixing this provider with Linq To Objects seamlessly. To illustrate, imagine I have a web service which returns a list of Customers given only the name. The customers class for this example might look like: Code Snippet public class Customer { public int Id { get; set; } public string Name { get; set; } public string Address { get; set; } public DateTime DOB { get; set; } } I would be
Read More...