Class ManyToManyLoader<TEntity, TSourceEntity>
- Namespace
- Microsoft.EntityFrameworkCore.Internal
- Assembly
- Microsoft.EntityFrameworkCore.dll
This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.
public class ManyToManyLoader<TEntity, TSourceEntity> : ICollectionLoader<TEntity>, ICollectionLoader where TEntity : class where TSourceEntity : class
Type Parameters
TEntity
TSourceEntity
- Inheritance
-
ManyToManyLoader<TEntity, TSourceEntity>
- Implements
-
ICollectionLoader<TEntity>
- Inherited Members
Constructors
ManyToManyLoader(ISkipNavigation)
This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.
public ManyToManyLoader(ISkipNavigation skipNavigation)
Parameters
skipNavigation
ISkipNavigation
Methods
Load(InternalEntityEntry, LoadOptions)
This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.
public virtual void Load(InternalEntityEntry entry, LoadOptions options)
Parameters
entry
InternalEntityEntryoptions
LoadOptions
LoadAsync(InternalEntityEntry, LoadOptions, CancellationToken)
This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.
public virtual Task LoadAsync(InternalEntityEntry entry, LoadOptions options, CancellationToken cancellationToken = default)
Parameters
entry
InternalEntityEntryoptions
LoadOptionscancellationToken
CancellationToken
Returns
Query(InternalEntityEntry)
This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.
public virtual IQueryable<TEntity> Query(InternalEntityEntry entry)
Parameters
entry
InternalEntityEntry
Returns
- IQueryable<TEntity>