|
by Paulo Morgado via Paulo Morgado : C# on 10/13/2009 12:51:43 AM
LINQ brought developers a very user friendly and domain independent style of writing queries. The fact that the way queries are written is domain independent doesn’t mean that any query will compile the same way or even run the same way. You’ll always need to know how the provider will behave. LINQ To Objects, for example, will compile queries as a Func<> delegate and the query methods will return IEnumerable(T) implementations. On the other hand, LINQ To SQL will compile queries as
... [ read more ]
|