Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Linq in general, has extensions methods(at IEnumerable) like Where, Select, OrderBy. But use another methods like string.StartsWith.

Where can I find a list with all methods supported, for Linq to SQL and Linq to Entities?

share|improve this question

4 Answers

up vote 9 down vote accepted

Here's a list of all supported methods for LINQ to entities:

MSDN article

share|improve this answer

You could start with 101 Linq Samples.

There is a C# version and a VB.Net Version. The C# and VB.Net are broken out differently and the VB.Net version has a section specific to Linq to SQL.

You can also check out the MSDN section on Linq to SQL.

For Linq to Entities check out this MSDN link on Supported and Unsupported Methods (LINQ to Entities).

share|improve this answer

You can use Visual Studio's class browser to check the Enumerable class, which contains all LINQ extension methods.

share|improve this answer
Not all LINQ extension methods are supported by LINQ to Entities. – StriplingWarrior Jun 18 '10 at 17:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.