Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

LINQ to SQL: is there a complete list of supported IQueryable extension methods?

I'm looking for such list for LINQ to SQL. Ideally, I'd like to have a list of other supported methods (or members - e.g. constructors), e.g. for DateTime type.

like image 791
Alex Yakunin Avatar asked Dec 09 '09 16:12

Alex Yakunin


People also ask

What are LINQ extension methods?

Linq provides standard query operators like filtering, sorting, grouping, aggregation, and concatenations, and it has many operators to achive many types of functionalities, which are called extension methods, in LINQ.

Which method is valid in LINQ?

Most of the LINQ projection and restriction methods are supported in LINQ to Entities queries, with the exception of those that accept a positional argument. For more information, see Standard Query Operators in LINQ to Entities Queries.

Which join is not supported in LINQ?

LINQ does not support full outer joins directly, the same as right outer joins.


1 Answers

Yes, although less complete than for L2E. See also Data Types and Functions. This includes DateTime and DateTimeOffset.

like image 70
Craig Stuntz Avatar answered Sep 21 '22 12:09

Craig Stuntz