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? Thanks!
|
In T-SQL you could have a query like:
How would you replicate that in a Linq to Entities query? Is it even possible? Thanks! |
||||
|
|
|
You need to turn it on it's head in terms of the way you're thinking about it. Instead of doing "in" to find the current item's user rights in a predefined set of applicable user rights, you're asking a predefined set of user rights if it contains the current item's applicable value. This is exactly the same way you would find an item in a regular list in .NET. There are two ways of doing this using LINQ, one uses query syntax and the other uses method syntax. Essentially, they are the same and could be used interchangeably depending on your preference: Query Syntax:
Method Syntax:
My personal preference in this instance might be method syntax because instead of assigning the variable, I could do the foreach over an anonymous call like this:
Syntactically this looks more complex, and you have to understand the concept of lambda expressions or delegates to really figure out what's going on, but as you can see, this condenses the code a fair amount. It all comes down to your coding style and preference - all three of my examples do the same thing slightly differently. An alternative way doesn't even use LINQ, you can use the same method syntax replacing "where" with "FindAll" and get the same result, which will also work in .NET 2.0:
|
|||||||||||||||
|
|
If you're using VS2008/.net 3.5, see Alex James' tip #8: http://blogs.msdn.com/alexj/archive/2009/03/26/tip-8-writing-where-in-style-queries-using-linq-to-entities.aspx Otherwise just use the array.Contains(someEntity.Member) method. |
|||||
|
|
|
This should suffice your purpose. It compares two collections and checks if one collection has the values matching those in the other collection
|
|||
|
|
|
I also tried to work with an SQL-IN-like thing - querying against an Entity Data Model. My approach is a string builder to compose a big OR-expression. That's terribly ugly, but I'm afraid it's the only way to go right now. Now well, that looks like this:
Working with GUIDs in this context: As you can see above, there is always the word "GUID" before the GUID ifself in the query string fragments. If you don't add this,
Found this in MSDN Forums, might be helpful to have in mind. Matthias ... looking forward for the next version of .NET and Entity Framework, when everything get's better. :) |
|||
|
|
|
Seriously? You folks have never used
|
|||||
|
|
I will go for Inner Join in this context. If I would have used contains, it would iterate 6 times despite if the fact that there are just one match.
Disadvantages of ContainsSuppose I have two list objects.
Using Contains, it will search for each List 1 item in List 2 that means iteration will happen 49 times !!! |
||||
|
|