What is the use of IQueryable in the context of Linq. Is it used for developing extension methods or any other purpose?
|
|
||||
|
|
|
Marc Gravell's answer is very complete, but I thought I'd add something about this from the user's point of view, as well... The main difference, from a user's perspective, is that, when you use For example, if you're working against a remote database, with many ORM systems, you have the option of fetching data from a table in two ways, one which returns If you do:
What happens here, is the database loads all of the products, and passes them across the wire to your program. Your program then filters the data. In essense, the database does a "SELECT * FROM Products", and returns EVERY product to you. With the right
The code looks the same, but the difference here is that the SQL executed will be "SELECT * FROM Products WHERE Cost >= 25". From your POV as a developer, this looks the same. However, from a performance standpoint, you may only return 2 records across the network instead of 20,000.... |
|||||||||||||||||
|
|
In essence it's job is very similar to The expression trees can be inspected by your chosen LINQ provider and turned into an actual query - although that is a black art in itself. This is really down to the Re comments; I'm not quite sure what you want by way of example, but consider LINQ-to-SQL; the central object here is a
this becomes (by the C# compiler):
which is again interpreted (by the C# compiler) as:
Importantly, the static methods on
Didn't the compiler do a lot for us? This object model can be torn apart, inspected for what it means, and put back together again by the TSQL generator - giving something like:
(the string might end up as a parameter; I can't remember) None of this would be possible if we had just used a delegate. And this is the point of All this is very complex, so it is a good job that the compiler makes it nice and easy for us. For more information, look at "C# in Depth" or "LINQ in Action", both of which provide coverage of these topics. |
|||||||||||||||
|
|
It allows for further querying further down the line. If this was beyond a service boundary say, then the user of this IQueryable object would be allowed to do more with it. For instance if you were using lazy loading with nhibernate this might result in graph being loaded when/if needed. |
|||
|
|