Show / Hide Table of Contents

Interface IEfCoreRepository<TEntity>

Inherited Members
Volo.Abp.Domain.Repositories.IRepository<TEntity>.FindAsync(Expression<>, System.Boolean, CancellationToken)
Volo.Abp.Domain.Repositories.IRepository<TEntity>.GetAsync(Expression<>, System.Boolean, CancellationToken)
Volo.Abp.Domain.Repositories.IRepository<TEntity>.DeleteAsync(Expression<>, System.Boolean, CancellationToken)
IReadOnlyRepository<TEntity>.WithDetails()
Volo.Abp.Domain.Repositories.IReadOnlyRepository<TEntity>.WithDetails(Expression<>[])
IBasicRepository<TEntity>.InsertAsync(TEntity, Boolean, CancellationToken)
IBasicRepository<TEntity>.UpdateAsync(TEntity, Boolean, CancellationToken)
IBasicRepository<TEntity>.DeleteAsync(TEntity, Boolean, CancellationToken)
IReadOnlyBasicRepository<TEntity>.GetListAsync(Boolean, CancellationToken)
IReadOnlyBasicRepository<TEntity>.GetCountAsync(CancellationToken)
IReadOnlyBasicRepository<TEntity>.GetPagedListAsync(Int32, Int32, String, Boolean, CancellationToken)
Namespace: Volo.Abp.Domain.Repositories.EntityFrameworkCore
Assembly: Volo.Abp.EntityFrameworkCore.dll
Syntax
public interface IEfCoreRepository<TEntity> : IRepository<TEntity>, IReadOnlyRepository<TEntity>, IQueryable<TEntity>, IBasicRepository<TEntity>, IReadOnlyBasicRepository<TEntity>, IRepository where TEntity : class, IEntity
Type Parameters
Name Description
TEntity

Properties

DbContext

Declaration
DbContext DbContext { get; }
Property Value
Type Description
DbContext

DbSet

Declaration
DbSet<TEntity> DbSet { get; }
Property Value
Type Description
DbSet<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