Class SqlliteMemoryContext
Implements
Inherited Members
Namespace: Coree.NETStandard.UnderConstruction
Assembly: Coree.NETStandard.dll
Syntax
public class SqlliteMemoryContext : DbContext, IDisposable, IAsyncDisposable, IInfrastructure<IServiceProvider>, IDbContextDependencies, IDbSetCache, IDbContextPoolable, IResettableService
Constructors
| Edit this page View SourceSqlliteMemoryContext()
Declaration
public SqlliteMemoryContext()
Properties
| Edit this page View SourceUserDataDtos
Declaration
public DbSet<SqlliteMemoryContext.UserDataDto> UserDataDtos { get; set; }
Property Value
Type | Description |
---|---|
DbSet<SqlliteMemoryContext.UserDataDto> |
Methods
| Edit this page View SourceDispose()
Releases the allocated resources for this context.
Declaration
public override void Dispose()
Overrides
| Edit this page View SourceOnConfiguring(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.
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).
Declaration
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
Parameters
Type | Name | Description |
---|---|---|
DbContextOptionsBuilder | optionsBuilder | A 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. |