![](https://lemmy.world/pictrs/image/3202f1df-e647-440d-8114-032fe3861cd9.jpeg)
![](https://programming.dev/pictrs/image/8140dda6-9512-4297-ac17-d303638c90a6.png)
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;
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;
Something similar to VSCode’s ability to open searches in an editor? Looks like you can save and reopen them too.