|
|
|
|
|
by Kuinox
1615 days ago
|
|
I'm a C# dev, I know well LINQ. LINQ has multiples issues compared to what I want to do. It's slow (at leat 1000x slower than a for loop) There is no query optimizer by default, and even less a runtime query optimiser. It's directly translated to procedural code, it doesn't get compiled and translated like a query engine will do in an SQL DB. |
|
Also, I understood that it was translated to IEnumerable queries, so, wouldn’t EF optimize the query ?