Show / Hide Table of Contents

Class FeatureManagementDbContext

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

Constructors

FeatureManagementDbContext(DbContextOptions<FeatureManagementDbContext>)

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

Properties

FeatureGroups

Declaration
public DbSet<FeatureGroupDefinitionRecord> FeatureGroups { get; set; }
Property Value
Type Description
DbSet<FeatureGroupDefinitionRecord>

FeatureValues

Declaration
public DbSet<FeatureValue> FeatureValues { get; set; }
Property Value
Type Description
DbSet<FeatureValue>

Features

Declaration
public DbSet<FeatureDefinitionRecord> Features { get; set; }
Property Value
Type Description
DbSet<FeatureDefinitionRecord>

Methods

OnModelCreating(ModelBuilder)

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

Implements

IAbpEfCoreDbContext
IAbpEfCoreDbFunctionContext
ITransientDependency
IFeatureManagementDbContext
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