Show / Hide Table of Contents

Class BlobStoringDbContext

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

Constructors

BlobStoringDbContext(DbContextOptions<BlobStoringDbContext>)

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

Properties

BlobContainers

Declaration
public DbSet<DatabaseBlobContainer> BlobContainers { get; set; }
Property Value
Type Description
DbSet<DatabaseBlobContainer>

Blobs

Declaration
public DbSet<DatabaseBlob> Blobs { get; set; }
Property Value
Type Description
DbSet<DatabaseBlob>

Methods

OnModelCreating(ModelBuilder)

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

Implements

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