score:3
Accepted answer
She means that you'll get back an IEnumerable, which doesn't have any support for two way binding or extra facilities like notifications of add/remove events, that are available in other collection types. So, the code is taking the IEnumerable and putting the results into a "richer" collection type that has those kinds of features.
Source: stackoverflow.com
Related Articles
- Entity Framework 6 Code First Custom Functions
- Avoiding repeated projection code in Entity Framework
- Forcing Entity Framework to not generate NCLOB's when building Linq-to-Sql Code (Model First)
- Entity Framework Code First without app.config
- Entity Framework Code First using context in Controller
- many to many mapping in entity framework code first
- How to Create a Run-Time Computed (NotMapped) Value in Entity Framework Code First
- updating data in many-to-many relationship in entity framework in code first existing database
- Entity Framework Code First String Comparison with Oracle Db
- SQL subquery result in LINQ and Entity Framework Code First
- most efficient Entity Framework Code First method of flattening / projecting parent entity with specific child
- Entity Framework Code First - Get blog posts which have certain tags
- Questions regarding How do i tutorial (WPF/Entity Framework/ObservableCollections)
- How to Query Icollections of Entity Framework Code First Data
- Entity Framework code first - Many to Many - Include conditional
- Entity Framework Code First ToList method timing out on SQL Azure
- Entity Framework Insert In Code
- How to make a property unique in Entity Framework Code First
- Entity Framework Code First override onModelCreating() for TPT Inheritance Screwing Up Identity User and Role Models
- How to loop through a child list of objects in Entity Framework 4.1 code first
- how to select data by linq in many-to-many relationship in First code Entity framework 5
- How to Lazy Load child object with string primary key in Entity Framework Code First?
- Why Entity Framework Code First one to many Doesn't work properly
- LINQ - Entity framework code first - Grouped results to custom class
- Equivalent sql code insert/sql in entity framework in code-first
- map one to one with multiple primary key columns entity framework code first
- Does Linq in Entity Framework code first use SQL or does it get the whole table first?
- Fixing Loop Reference in Entity Framework Code First when Serializing to Json
- IQueryable two tables from Code First Entity Framework
- Entity Framework Code First Select Item Based on Relationship
- Parsing Complex XML using LINQ
- Outer Join in Linq or EF
- Using Linq to GroupBy and Case When via datatable
- Multiple keyword search using lambda
- Iterating over a List<IDictionary<string,object>>
- Returning a single value with Linq to SQL
- Linq query on IList<T> string member
- The entity or complex type 'WebProject.Data.Value' cannot be constructed in a LINQ to Entities query.",
- linq query to split a time interval into daily batches with part days at start and end
- Calculating Total Count of Items in List<T> for multiple KeyValuePairs in Dictionary<string,List<string>>
- How do I retrieve table data when it is a 'level down' in the class definition?
- Percent change of a IList<T> returning IList<T> using LINQ
- Another Permutation Word Conundrum... With Linq?
- LINQ GroupBy to get Name and A Count
- Get Total Count of Unique Items of Generic List
- How can i improve this with linq?
- LINQ - List within a List filtering
- How to use Enums with Dynamic Linq?
- linq to entities where condition issue
- LINQ's .Union() with unknown data types