Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Linq Methods

Tags:

c#

linq

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?

like image 899
Felipe Pessoto Avatar asked Jul 06 '09 10:07

Felipe Pessoto


1 Answers

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

MSDN article

like image 198
Colin Avatar answered Oct 09 '22 08:10

Colin