EntityFrameworkQueryableExtensions.IgnoreAutoIncludes<TEntity> Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies that the current Entity Framework LINQ query should not have any model-level eager loaded navigations applied.
public static System.Linq.IQueryable<TEntity> IgnoreAutoIncludes<TEntity> (this System.Linq.IQueryable<TEntity> source) where TEntity : class;
static member IgnoreAutoIncludes : System.Linq.IQueryable<'Entity (requires 'Entity : null)> -> System.Linq.IQueryable<'Entity (requires 'Entity : null)> (requires 'Entity : null)
<Extension()>
Public Function IgnoreAutoIncludes(Of TEntity As Class) (source As IQueryable(Of TEntity)) As IQueryable(Of TEntity)
Type Parameters
- TEntity
The type of entity being queried.
Parameters
- source
- IQueryable<TEntity>
The source query.
Returns
IQueryable<TEntity>
A new query that will not apply any model-level eager loaded navigations.
Remarks
See Loading related entities for more information and examples.
Applies to
Samarbeta med oss på GitHub
Källan för det här innehållet finns på GitHub, där du även kan skapa och granska ärenden och pull-begäranden. Se vår deltagarguide för mer information.
Entity Framework