Show / Hide Table of Contents

Class EfCoreBackgroundJobRepository

Inheritance
System.Object
EfCoreRepository<IBackgroundJobsDbContext, BackgroundJobRecord>
EfCoreRepository<IBackgroundJobsDbContext, BackgroundJobRecord, Guid>
EfCoreBackgroundJobRepository
Implements
IAsyncEnumerable<BackgroundJobRecord>
IEfCoreRepository<BackgroundJobRecord, Guid>
IEfCoreRepository<BackgroundJobRecord>
IRepository<BackgroundJobRecord>
IRepository<BackgroundJobRecord, Guid>
ISupportsExplicitLoading<BackgroundJobRecord, Guid>
IBackgroundJobRepository
IBasicRepository<BackgroundJobRecord, Guid>
Inherited Members
EfCoreRepository<IBackgroundJobsDbContext, BackgroundJobRecord, Guid>.GetAsync(Guid, Boolean, CancellationToken)
EfCoreRepository<IBackgroundJobsDbContext, BackgroundJobRecord, Guid>.FindAsync(Guid, Boolean, CancellationToken)
EfCoreRepository<IBackgroundJobsDbContext, BackgroundJobRecord, Guid>.DeleteAsync(Guid, Boolean, CancellationToken)
EfCoreRepository<IBackgroundJobsDbContext, BackgroundJobRecord>.DbSet
EfCoreRepository<IBackgroundJobsDbContext, BackgroundJobRecord>.DbContext
EfCoreRepository<IBackgroundJobsDbContext, BackgroundJobRecord>.AbpEntityOptions
EfCoreRepository<IBackgroundJobsDbContext, BackgroundJobRecord>.GuidGenerator
EfCoreRepository<IBackgroundJobsDbContext, BackgroundJobRecord>.InsertAsync(BackgroundJobRecord, Boolean, CancellationToken)
EfCoreRepository<IBackgroundJobsDbContext, BackgroundJobRecord>.UpdateAsync(BackgroundJobRecord, Boolean, CancellationToken)
EfCoreRepository<IBackgroundJobsDbContext, BackgroundJobRecord>.DeleteAsync(BackgroundJobRecord, Boolean, CancellationToken)
EfCoreRepository<IBackgroundJobsDbContext, BackgroundJobRecord>.GetListAsync(Boolean, CancellationToken)
EfCoreRepository<IBackgroundJobsDbContext, BackgroundJobRecord>.GetCountAsync(CancellationToken)
EfCoreRepository<IBackgroundJobsDbContext, BackgroundJobRecord>.GetPagedListAsync(Int32, Int32, String, Boolean, CancellationToken)
EfCoreRepository<IBackgroundJobsDbContext, BackgroundJobRecord>.GetQueryable()
Volo.Abp.Domain.Repositories.EntityFrameworkCore.EfCoreRepository<Volo.Abp.BackgroundJobs.EntityFrameworkCore.IBackgroundJobsDbContext, Volo.Abp.BackgroundJobs.BackgroundJobRecord>.FindAsync(Expression<>, System.Boolean, CancellationToken)
Volo.Abp.Domain.Repositories.EntityFrameworkCore.EfCoreRepository<Volo.Abp.BackgroundJobs.EntityFrameworkCore.IBackgroundJobsDbContext, Volo.Abp.BackgroundJobs.BackgroundJobRecord>.DeleteAsync(Expression<>, System.Boolean, CancellationToken)
Volo.Abp.Domain.Repositories.EntityFrameworkCore.EfCoreRepository<Volo.Abp.BackgroundJobs.EntityFrameworkCore.IBackgroundJobsDbContext, Volo.Abp.BackgroundJobs.BackgroundJobRecord>.EnsureCollectionLoadedAsync<TProperty>(Volo.Abp.BackgroundJobs.BackgroundJobRecord, Expression<>, CancellationToken)
Volo.Abp.Domain.Repositories.EntityFrameworkCore.EfCoreRepository<Volo.Abp.BackgroundJobs.EntityFrameworkCore.IBackgroundJobsDbContext, Volo.Abp.BackgroundJobs.BackgroundJobRecord>.EnsurePropertyLoadedAsync<TProperty>(Volo.Abp.BackgroundJobs.BackgroundJobRecord, Expression<>, CancellationToken)
EfCoreRepository<IBackgroundJobsDbContext, BackgroundJobRecord>.WithDetails()
Volo.Abp.Domain.Repositories.EntityFrameworkCore.EfCoreRepository<Volo.Abp.BackgroundJobs.EntityFrameworkCore.IBackgroundJobsDbContext, Volo.Abp.BackgroundJobs.BackgroundJobRecord>.WithDetails(Expression<>[])
EfCoreRepository<IBackgroundJobsDbContext, BackgroundJobRecord>.GetAsyncEnumerator(CancellationToken)
EfCoreRepository<IBackgroundJobsDbContext, BackgroundJobRecord>.CheckAndSetId(BackgroundJobRecord)
EfCoreRepository<IBackgroundJobsDbContext, BackgroundJobRecord>.TrySetGuidId(IEntity<Guid>)
Namespace: Volo.Abp.BackgroundJobs.EntityFrameworkCore
Assembly: Volo.Abp.BackgroundJobs.EntityFrameworkCore.dll
Syntax
public class EfCoreBackgroundJobRepository : EfCoreRepository<IBackgroundJobsDbContext, BackgroundJobRecord, Guid>, IAsyncEnumerable<BackgroundJobRecord>, IEfCoreRepository<BackgroundJobRecord, Guid>, IEfCoreRepository<BackgroundJobRecord>, IRepository<BackgroundJobRecord>, IRepository<BackgroundJobRecord, Guid>, ISupportsExplicitLoading<BackgroundJobRecord, Guid>, IBackgroundJobRepository, IBasicRepository<BackgroundJobRecord, Guid>

Constructors

EfCoreBackgroundJobRepository(IDbContextProvider<IBackgroundJobsDbContext>, IClock)

Declaration
public EfCoreBackgroundJobRepository(IDbContextProvider<IBackgroundJobsDbContext> dbContextProvider, IClock clock)
Parameters
Type Name Description
IDbContextProvider<IBackgroundJobsDbContext> dbContextProvider
IClock clock

Properties

Clock

Declaration
protected IClock Clock { get; }
Property Value
Type Description
IClock

Methods

GetWaitingListAsync(Int32)

Declaration
public virtual Task<List<BackgroundJobRecord>> GetWaitingListAsync(int maxResultCount)
Parameters
Type Name Description
System.Int32 maxResultCount
Returns
Type Description
Task<List<BackgroundJobRecord>>

GetWaitingListQuery(Int32)

Declaration
protected virtual IQueryable<BackgroundJobRecord> GetWaitingListQuery(int maxResultCount)
Parameters
Type Name Description
System.Int32 maxResultCount
Returns
Type Description
IQueryable<BackgroundJobRecord>

Implements

IAsyncEnumerable<>
IEfCoreRepository<TEntity, TKey>
IEfCoreRepository<TEntity>
IRepository<TEntity>
IRepository<TEntity, TKey>
ISupportsExplicitLoading<TEntity, TKey>
IBackgroundJobRepository
IBasicRepository<TEntity, TKey>

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