Show / Hide Table of Contents

Interface IReadOnlyRepository<TEntity>

Inherited Members
IReadOnlyBasicRepository<TEntity>.GetListAsync(Boolean, CancellationToken)
IReadOnlyBasicRepository<TEntity>.GetCountAsync(CancellationToken)
IReadOnlyBasicRepository<TEntity>.GetPagedListAsync(Int32, Int32, String, Boolean, CancellationToken)
Namespace: Volo.Abp.Domain.Repositories
Assembly: Volo.Abp.Ddd.Domain.dll
Syntax
public interface IReadOnlyRepository<TEntity> : IQueryable<TEntity>, IReadOnlyBasicRepository<TEntity>, IRepository where TEntity : class, IEntity
Type Parameters
Name Description
TEntity

Methods

WithDetails()

Declaration
IQueryable<TEntity> WithDetails()
Returns
Type Description
IQueryable<TEntity>

WithDetails(Expression<Func<TEntity, Object>>[])

Declaration
IQueryable<TEntity> WithDetails(params Expression<Func<TEntity, object>>[] propertySelectors)
Parameters
Type Name Description
Expression<Func<TEntity, System.Object>>[] propertySelectors
Returns
Type Description
IQueryable<TEntity>

Extension Methods

AbpObjectExtensions.As<T>(Object)
AbpObjectExtensions.To<T>(Object)
AbpObjectExtensions.IsIn<T>(T, T[])
AbpObjectExtensions.If<T>(T, Boolean, Func<T, T>)
AbpObjectExtensions.If<T>(T, Boolean, Action<T>)
LockExtensions.Locking(Object, Action)
LockExtensions.Locking<T>(T, Action<T>)
LockExtensions.Locking<TResult>(Object, Func<TResult>)
LockExtensions.Locking<T, TResult>(T, Func<T, TResult>)
Back to top Powered by Volosoft