The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
QueryableExtensions::Load Method (IQueryable^)
Entity Framework 6.0
Enumerates the query such that for server queries such as those of DbSet<TEntity>, ObjectSet<TEntity> , ObjectQuery<T>, and others the results of the query will be loaded into the associated DbContext , ObjectContext or other cache on the client. This is equivalent to calling ToList and then throwing away the list without the overhead of actually creating the list.
Assembly: EntityFramework (in EntityFramework.dll)
Parameters
- source
-
Type:
System.Linq::IQueryable^
The source query.
Show: