Pelle Stenild Coltau
Results
1
comments of
Pelle Stenild Coltau
@roji That works well when matching a single entity, but not when you have a list of entities: `ctx.Blogs.Where(b => myBlogs.Contains(b))` A workaround would be to use .Any: `ctx.Blogs.Where(b =>...