Interface ISupportsExplicitLoading<TEntity>
Assembly: Volo.Abp.Ddd.Domain.dll
Syntax
public interface ISupportsExplicitLoading<TEntity> where TEntity : class, IEntity
Type Parameters
Methods
EnsureCollectionLoadedAsync<TProperty>(TEntity, Expression<Func<TEntity, IEnumerable<TProperty>>>, CancellationToken)
Declaration
Task EnsureCollectionLoadedAsync<TProperty>(TEntity entity, Expression<Func<TEntity, IEnumerable<TProperty>>> propertyExpression, CancellationToken cancellationToken) where TProperty : class
Parameters
Returns
Type Parameters
Name |
Description |
TProperty |
|
EnsurePropertyLoadedAsync<TProperty>(TEntity, Expression<Func<TEntity, TProperty?>>, CancellationToken)
Declaration
Task EnsurePropertyLoadedAsync<TProperty>(TEntity entity, Expression<Func<TEntity, TProperty?>> propertyExpression, CancellationToken cancellationToken) where TProperty : class
Parameters
Returns
Type Parameters
Name |
Description |
TProperty |
|
Extension Methods