tags:

views:

354

answers:

4
+5  Q: 

Linq Methods

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?

+7  A: 

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

MSDN article

Colin
A: 

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

Philippe Leybaert
Not all LINQ extension methods are supported by LINQ to Entities.
StriplingWarrior
+2  A: 

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).

CertifiedCrazy
+5  A: 

For LINQ to SQL:

Data Types and Functions (LINQ to SQL)

Per Erik Stendahl