Details
Get List of Entities from List of IDs
I've done this a million times
And I've had to check how it's done a million times
NOT ANYMORE!!
var categories = await context.Categories
.Where(c => request.CategoryIds.Contains(c.Id))
.ToListAsync();
The shit.