Show / Hide Table of Contents

Class AbpAuditLoggingDbContext

Inheritance
object
AbpDbContext<AbpAuditLoggingDbContext>
AbpAuditLoggingDbContext
Implements
IAbpEfCoreDbContext
IAbpEfCoreDbFunctionContext
ITransientDependency
IAuditLoggingDbContext
IEfCoreDbContext
IDisposable
IInfrastructure<IServiceProvider>
IDbContextDependencies
IDbSetCache
IDbContextPoolable
IResettableService
IAsyncDisposable
Inherited Members
AbpDbContext<AbpAuditLoggingDbContext>.DbContextOptions
AbpDbContext<AbpAuditLoggingDbContext>.OnConfiguring(DbContextOptionsBuilder)
AbpDbContext<AbpAuditLoggingDbContext>.ConfigureConventions(ModelConfigurationBuilder)
AbpDbContext<AbpAuditLoggingDbContext>.TrySetDatabaseProvider(ModelBuilder)
AbpDbContext<AbpAuditLoggingDbContext>.GetDatabaseProviderOrNull(ModelBuilder)
AbpDbContext<AbpAuditLoggingDbContext>.SaveChangesAsync(bool, CancellationToken)
AbpDbContext<AbpAuditLoggingDbContext>.PublishEventsForChangedEntityOnSaveChangeAsync()
AbpDbContext<AbpAuditLoggingDbContext>.PublishEntityEvents(EntityEventReport)
AbpDbContext<AbpAuditLoggingDbContext>.SaveChangesOnDbContextAsync(bool, CancellationToken)
AbpDbContext<AbpAuditLoggingDbContext>.Initialize(AbpEfCoreDbContextInitializationContext)
AbpDbContext<AbpAuditLoggingDbContext>.ChangeTracker_Tracked(object, EntityTrackedEventArgs)
AbpDbContext<AbpAuditLoggingDbContext>.ChangeTracker_StateChanged(object, EntityStateChangedEventArgs)
AbpDbContext<AbpAuditLoggingDbContext>.FillExtraPropertiesForTrackedEntities(EntityTrackedEventArgs)
AbpDbContext<AbpAuditLoggingDbContext>.PublishEventsForTrackedEntity(EntityEntry)
AbpDbContext<AbpAuditLoggingDbContext>.HandlePropertiesBeforeSave()
AbpDbContext<AbpAuditLoggingDbContext>.CreateEventReport()
AbpDbContext<AbpAuditLoggingDbContext>.HandleExtraPropertiesOnSave(EntityEntry)
AbpDbContext<AbpAuditLoggingDbContext>.ApplyAbpConceptsForAddedEntity(EntityEntry)
AbpDbContext<AbpAuditLoggingDbContext>.ApplyAbpConceptsForModifiedEntity(EntityEntry, bool)
AbpDbContext<AbpAuditLoggingDbContext>.ApplyAbpConceptsForDeletedEntity(EntityEntry)
AbpDbContext<AbpAuditLoggingDbContext>.IsHardDeleted(EntityEntry)
AbpDbContext<AbpAuditLoggingDbContext>.UpdateConcurrencyStamp(EntityEntry)
AbpDbContext<AbpAuditLoggingDbContext>.SetConcurrencyStampIfNull(EntityEntry)
AbpDbContext<AbpAuditLoggingDbContext>.CheckAndSetId(EntityEntry)
AbpDbContext<AbpAuditLoggingDbContext>.TrySetGuidId(EntityEntry, IEntity<Guid>)
AbpDbContext<AbpAuditLoggingDbContext>.SetCreationAuditProperties(EntityEntry)
AbpDbContext<AbpAuditLoggingDbContext>.SetModificationAuditProperties(EntityEntry)
AbpDbContext<AbpAuditLoggingDbContext>.SetDeletionAuditProperties(EntityEntry)
AbpDbContext<AbpAuditLoggingDbContext>.IncrementEntityVersionProperty(EntityEntry)
AbpDbContext<AbpAuditLoggingDbContext>.ConfigureBaseProperties<TEntity>(ModelBuilder, IMutableEntityType)
AbpDbContext<AbpAuditLoggingDbContext>.ConfigureGlobalFilters<TEntity>(ModelBuilder, IMutableEntityType)
AbpDbContext<AbpAuditLoggingDbContext>.ConfigureValueConverter<TEntity>(ModelBuilder, IMutableEntityType)
AbpDbContext<AbpAuditLoggingDbContext>.ConfigureValueGenerated<TEntity>(ModelBuilder, IMutableEntityType)
AbpDbContext<AbpAuditLoggingDbContext>.ShouldFilterEntity<TEntity>(IMutableEntityType)
AbpDbContext<AbpAuditLoggingDbContext>.CreateFilterExpression<TEntity>(ModelBuilder)
AbpDbContext<AbpAuditLoggingDbContext>.UseDbFunction()
AbpDbContext<AbpAuditLoggingDbContext>.GetCompiledQueryCacheKey()
AbpDbContext<AbpAuditLoggingDbContext>.LazyServiceProvider
AbpDbContext<AbpAuditLoggingDbContext>.CurrentTenantId
AbpDbContext<AbpAuditLoggingDbContext>.IsMultiTenantFilterEnabled
AbpDbContext<AbpAuditLoggingDbContext>.IsSoftDeleteFilterEnabled
AbpDbContext<AbpAuditLoggingDbContext>.CurrentTenant
AbpDbContext<AbpAuditLoggingDbContext>.GuidGenerator
AbpDbContext<AbpAuditLoggingDbContext>.DataFilter
AbpDbContext<AbpAuditLoggingDbContext>.EntityChangeEventHelper
AbpDbContext<AbpAuditLoggingDbContext>.EntityChangeOptions
AbpDbContext<AbpAuditLoggingDbContext>.AuditPropertySetter
AbpDbContext<AbpAuditLoggingDbContext>.EntityHistoryHelper
AbpDbContext<AbpAuditLoggingDbContext>.AuditingManager
AbpDbContext<AbpAuditLoggingDbContext>.UnitOfWorkManager
AbpDbContext<AbpAuditLoggingDbContext>.Clock
AbpDbContext<AbpAuditLoggingDbContext>.DistributedEventBus
AbpDbContext<AbpAuditLoggingDbContext>.LocalEventBus
AbpDbContext<AbpAuditLoggingDbContext>.Logger
AbpDbContext<AbpAuditLoggingDbContext>.AbpEfCoreNavigationHelper
AbpDbContext<AbpAuditLoggingDbContext>.Options
AbpDbContext<AbpAuditLoggingDbContext>.GlobalFilterOptions
Namespace: Volo.Abp.AuditLogging.EntityFrameworkCore
Assembly: Volo.Abp.AuditLogging.EntityFrameworkCore.dll
Syntax
[ConnectionStringName("AbpAuditLogging")]
public class AbpAuditLoggingDbContext : AbpDbContext<AbpAuditLoggingDbContext>, IAbpEfCoreDbContext, IAbpEfCoreDbFunctionContext, ITransientDependency, IAuditLoggingDbContext, IEfCoreDbContext, IDisposable, IInfrastructure<IServiceProvider>, IDbContextDependencies, IDbSetCache, IDbContextPoolable, IResettableService, IAsyncDisposable

Constructors

AbpAuditLoggingDbContext(DbContextOptions<AbpAuditLoggingDbContext>)

Declaration
public AbpAuditLoggingDbContext(DbContextOptions<AbpAuditLoggingDbContext> options)
Parameters
Type Name Description
DbContextOptions<AbpAuditLoggingDbContext> options

Properties

AuditLogs

Declaration
public DbSet<AuditLog> AuditLogs { get; set; }
Property Value
Type Description
DbSet<AuditLog>

Methods

OnModelCreating(ModelBuilder)

Declaration
protected override void OnModelCreating(ModelBuilder builder)
Parameters
Type Name Description
ModelBuilder builder
Overrides
Volo.Abp.EntityFrameworkCore.AbpDbContext<Volo.Abp.AuditLogging.EntityFrameworkCore.AbpAuditLoggingDbContext>.OnModelCreating(Microsoft.EntityFrameworkCore.ModelBuilder)

Implements

IAbpEfCoreDbContext
IAbpEfCoreDbFunctionContext
ITransientDependency
IAuditLoggingDbContext
IEfCoreDbContext
IDisposable
Microsoft.EntityFrameworkCore.Infrastructure.IInfrastructure<>
Microsoft.EntityFrameworkCore.Internal.IDbContextDependencies
Microsoft.EntityFrameworkCore.Internal.IDbSetCache
Microsoft.EntityFrameworkCore.Internal.IDbContextPoolable
Microsoft.EntityFrameworkCore.Infrastructure.IResettableService
IAsyncDisposable

Extension Methods

AbpObjectExtensions.As<T>(object)
AbpObjectExtensions.To<T>(object)
LockExtensions.Locking(object, Action)
LockExtensions.Locking<TResult>(object, Func<TResult>)
AbpObjectExtensions.If<T>(T, bool, Action<T>)
AbpObjectExtensions.If<T>(T, bool, Func<T, T>)
AbpObjectExtensions.IsIn<T>(T, IEnumerable<T>)
AbpObjectExtensions.IsIn<T>(T, params T[])
AbpQueryableExtensions.OrderByIf<T, TQueryable>(TQueryable, bool, string)
AbpQueryableExtensions.PageBy<T, TQueryable>(TQueryable, int, int)
AbpQueryableExtensions.WhereIf<T, TQueryable>(TQueryable, bool, Expression<Func<T, bool>>)
AbpQueryableExtensions.WhereIf<T, TQueryable>(TQueryable, bool, Expression<Func<T, int, bool>>)
AbpOpenIddictQueryableExtensions.SkipIf<T, TQueryable>(TQueryable, bool, int?)
AbpOpenIddictQueryableExtensions.TakeIf<T, TQueryable>(TQueryable, bool, int?)
LockExtensions.Locking<T>(T, Action<T>)
LockExtensions.Locking<T, TResult>(T, Func<T, TResult>)
In this article
Back to top Powered by ABP.IO Platform