I've spoken with multiple developers who interpet "LINQ" as LINQ to SQL. Yes, they are certainly related, but LINQ is not just LINQ to SQL. LINQ to SQL is likely the most well known LINQ Provider, although its only a small part of the LINQ umbrella. In fact, LINQ to SQL will likely fade into the sunset, as Microsoft will no longer be enhancing it, but rather focusing on the Entity Framework.
LINQ provides an abstraction for querying data, regardless of where that data resides. Consider the fol...
No comments yet, be the first one to post comment.