Is it possible to override the SQL generated by LINQ to SQL, for optimisation purposes?
feedback
|
|
You could use the ExecuteQuery method instead. This is useful if you want to leverage a function that's available in SqlServer but not in Linq (IE PIVOT, etc...) For instance:
| |||
|
feedback
|
|
One way I have used: | |||
|
feedback
|