Class MasterDBContext
- Namespace
- Oqtane.Repository
- Assembly
- Oqtane.Server.dll
public class MasterDBContext : DbContext
- Inheritance
-
MasterDBContext
Constructors
MasterDBContext(DbContextOptions<MasterDBContext>, IHttpContextAccessor, IConfigManager)
public MasterDBContext(DbContextOptions<MasterDBContext> options, IHttpContextAccessor accessor, IConfigManager config)
Parameters
options
DbContextOptions<MasterDBContext>accessor
IHttpContextAccessorconfig
IConfigManager
Properties
ActiveDatabase
public IDatabase ActiveDatabase { get; }
Property Value
Alias
public virtual DbSet<Alias> Alias { get; set; }
Property Value
Job
public virtual DbSet<Job> Job { get; set; }
Property Value
JobLog
public virtual DbSet<JobLog> JobLog { get; set; }
Property Value
ModuleDefinition
public virtual DbSet<ModuleDefinition> ModuleDefinition { get; set; }
Property Value
Setting
public virtual DbSet<Setting> Setting { get; set; }
Property Value
Tenant
public virtual DbSet<Tenant> Tenant { get; set; }
Property Value
Theme
public virtual DbSet<Theme> Theme { get; set; }
Property Value
Methods
OnConfiguring(DbContextOptionsBuilder)
Override this method to configure the database (and other options) to be used for this context. This method is called for each instance of the context that is created. The base implementation does nothing.
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
Parameters
optionsBuilder
DbContextOptionsBuilderA builder used to create or modify options for this context. Databases (and other extensions) typically define extension methods on this object that allow you to configure the context.
Remarks
In situations where an instance of DbContextOptions may or may not have been passed to the constructor, you can use IsConfigured to determine if the options have already been set, and skip some or all of the logic in OnConfiguring(DbContextOptionsBuilder).
See DbContext lifetime, configuration, and initialization for more information and examples.
SaveChanges()
Saves all changes made in this context to the database.
public override int SaveChanges()
Returns
- int
The number of state entries written to the database.
Remarks
This method will automatically call DetectChanges() to discover any changes to entity instances before saving to the underlying database. This can be disabled via AutoDetectChangesEnabled.
Entity Framework Core does not support multiple parallel operations being run on the same DbContext instance. This includes both parallel execution of async queries and any explicit concurrent use from multiple threads. Therefore, always await async calls immediately, or use separate DbContext instances for operations that execute in parallel. See Avoiding DbContext threading issues for more information and examples.
See Saving data in EF Core for more information and examples.
Exceptions
- DbUpdateException
An error is encountered while saving to the database.
- DbUpdateConcurrencyException
A concurrency violation is encountered while saving to the database. A concurrency violation occurs when an unexpected number of rows are affected during save. This is usually because the data in the database has been modified since it was loaded into memory.
SaveChangesAsync(CancellationToken)
Saves all changes made in this context to the database.
public override Task<int> SaveChangesAsync(CancellationToken cancellationToken = default)
Parameters
cancellationToken
CancellationTokenA CancellationToken to observe while waiting for the task to complete.
Returns
- Task<int>
A task that represents the asynchronous save operation. The task result contains the number of state entries written to the database.
Remarks
This method will automatically call DetectChanges() to discover any changes to entity instances before saving to the underlying database. This can be disabled via AutoDetectChangesEnabled.
Entity Framework Core does not support multiple parallel operations being run on the same DbContext instance. This includes both parallel execution of async queries and any explicit concurrent use from multiple threads. Therefore, always await async calls immediately, or use separate DbContext instances for operations that execute in parallel. See Avoiding DbContext threading issues for more information and examples.
See Saving data in EF Core for more information and examples.
Exceptions
- DbUpdateException
An error is encountered while saving to the database.
- DbUpdateConcurrencyException
A concurrency violation is encountered while saving to the database. A concurrency violation occurs when an unexpected number of rows are affected during save. This is usually because the data in the database has been modified since it was loaded into memory.
- OperationCanceledException
If the CancellationToken is canceled.