immutabletest@lemmy.worldtoProgramming@programming.dev•I wish writing SQL queries was more popular than ORMs
4·
1 year agoLINQ looks great with the query syntax:
var productsByCategory =
from p in dbContext.Products
where p.Price < 50
group by p.Category.Id
select p;
Something similar to VSCode’s ability to open searches in an editor? Looks like you can save and reopen them too.