Guest User

Untitled

a guest
Aug 17th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. The 'in' predicate in Entity Framework
  2. where empid in (1, 3, 5)
  3.  
  4. var Products = from product in dbctx.Products
  5. where itemQuery.Contains(product.ProductID)
  6. select product;
Add Comment
Please, Sign In to add comment