Skip Navigation
immutabletest immutabletest @lemmy.world
Posts 0
Comments 3
Ok, at some point we made a big mistake.
  • This is a Typescript type-level computation (which is Turing-complete AFAIK). However this kind of trickery is usually done for fun and to explore how much could be achieved just on the compile step.

  • 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;