minus-squareimmutabletest@lemmy.worldtoProgramming@programming.dev•I wish writing SQL queries was more popular than ORMslinkfedilinkarrow-up4·edit-21 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; linkfedilink
LINQ looks great with the query syntax:
var productsByCategory = from p in dbContext.Products where p.Price < 50 group by p.Category.Id select p;