In T-SQL you could have a query like:

SELECT * FROM Users WHERE User_Rights IN ("Admin", "User", "Limited")

How would you replicate that in a LINQ to Entities query? Is it even possible?

9 Answers
9

Leave a Reply

Your email address will not be published. Required fields are marked *