Skip Navigation
I wish writing SQL queries was more popular than ORMs
  • 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;
    
  • immutabletest immutabletest @lemmy.world
    Posts 0
    Comments 2