4 ms·
Just want to add that you can directly manipulate LINQ expressions. It might be more complex, but you can basically transform an IQueryable into another one. An
by rvdginste 3y ago
Just want to add that you can directly manipulate LINQ expressions. It might be more complex, but you can basically transform an IQueryable into another one. And the result can be used everywhere you can use LINQ.
You can also take advantage of ExpressionVisitor to manipulate expressions.
If you’re in C#, it seems more natural to work with LINQ expressions.
- masugiura 3y agothank you. C# certainly has a powerful syntax called LINQ. If you want to reuse existing SQL, I think you can use this library.