[-] immutabletest@lemmy.world 1 points 6 months ago

Something similar to VSCode's ability to open searches in an editor? Looks like you can save and reopen them too.

[-] immutabletest@lemmy.world 4 points 11 months ago* (last edited 11 months ago)

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

joined 1 year ago