score:2
The primary difference is that the extension methods defined for IQueryable take Expression objects instead of Func objects, meaning the delegate it receives is an expression tree instead of a method to invoke. IEnumerable is great for working with in-memory collections, but IQueryable allows for a remote data source, like a database or web service.
Source: stackoverflow.com
Related Articles
- LINQ Source Code Available
- How can I write the following code more elegantly using LINQ query syntax?
- How to write LINQ statement for XmlAttributeCollection?
- creating Linq to sqlite dbml from DbLinq source code
- How do I write a conditional (IF DATA EXISTS) LINQ statement without repetition?
- Better way to write Linq Where statement
- How to write Linq (or lambda) statement to produce all element that are NOT IN (or NOT EXIST)
- How to write this code using the Linq Extension Method-Syntax?
- How to write an linq statement to get the last of a group of records
- How to write a DISTINCT or GROUPBY LINQ statement using a strongly typed model in MVC
- How do I write a LINQ to SQL statement with a custom function that needs the compare the current item context to a passed in value?
- How do I write a linq select statement without knowing at design time the names of the properties I'm going to select?
- C# Linq / How to write below code in single query?
- how to write LINQ to objects equivalent code for this code
- How to write a linq statement that parses and checks value of a list
- source code for LINQ 101 samples
- How to write a LINQ If Else statement that does not return any value(even a null) if check evaluates to false?
- How to write the SQL ORDER BY {value} DESC LIMIT statement in LINQ to Entities (Entity Framewok)?
- How to do condition statement in LINQ based on code variables?
- How to write aggregate query in LINQ reusing part of the select code
- how to write a Linq query with a EF code first Many to Many relationship
- How to write a Linq statement in SQL?
- How to write C# LINQ code to select based on condition
- How to write a LINQ statement to get files with specific extensions from a dynamic list?
- LINQ statement to write to a list if item is unique
- How do I write a dynamic predicate builder for a where statement in linq / EF Core?
- Using a dictionary as a source of Regex.Replace patterns in a Linq statement
- How to write a linq statement to check if a record exists then make changes to it?
- How can I write a linq statement for LIKE in sql
- How to write a LINQ statement with a GroupBy condition
- Simplifying creating array column with Linq to SQL
- Linq updating a database, primary key
- EF is including Child's reference back to Parent's siblings
- Checking descendants of parent from a HashSet of values using LINQ
- Getting multiple count in EF Model LINQ in single DB call
- This Expression causes side effect and will not be evaluated
- Using Select and GroupBy in a Dataset using LINQ and returning multiple DataRows
- Is null-checking on Linq queries idiomatic?
- C#: Count distinct values in list of tuples
- InvalidCastException in Linq to entities query
- Converting into Lambda Expression
- LINQ group by sum not working as expected
- Error with implicitly typed variables
- Control manipulation with lambda expression
- LINQ to Entities does not recognize the method call within it
- C# DynamicLinq where clause with Any()
- Make List of Integers to Objects
- Refactor Linq to SQL Select Expression
- A lookup table for predicates?
- Matching users who reviewed the same restaurants