Show / Hide Table of Contents

Class LanguageManagementDbContext

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

Constructors

LanguageManagementDbContext(DbContextOptions<LanguageManagementDbContext>)

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

Properties

LanguageTexts

Declaration
public DbSet<LanguageText> LanguageTexts { get; set; }
Property Value
Type Description
DbSet<LanguageText>

Languages

Declaration
public DbSet<Language> Languages { get; set; }
Property Value
Type Description
DbSet<Language>

LocalizationResources

Declaration
public DbSet<LocalizationResourceRecord> LocalizationResources { get; set; }
Property Value
Type Description
DbSet<LocalizationResourceRecord>

LocalizationTexts

Declaration
public DbSet<LocalizationTextRecord> LocalizationTexts { get; set; }
Property Value
Type Description
DbSet<LocalizationTextRecord>

Methods

OnModelCreating(ModelBuilder)

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

Implements

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