Interface IMemoryDatabaseProvider<TMemoryDbContext>
Assembly: Volo.Abp.MemoryDb.dll
Syntax
public interface IMemoryDatabaseProvider<TMemoryDbContext> where TMemoryDbContext : MemoryDbContext
Type Parameters
Name |
Description |
TMemoryDbContext |
|
Properties
DbContext
Declaration
[Obsolete("Use GetDbContextAsync method.")]
TMemoryDbContext DbContext { get; }
Property Value
Type |
Description |
TMemoryDbContext |
|
Methods
GetDatabase()
Declaration
[Obsolete("Use GetDatabaseAsync method.")]
IMemoryDatabase GetDatabase()
Returns
GetDatabaseAsync()
Declaration
Task<IMemoryDatabase> GetDatabaseAsync()
Returns
GetDbContextAsync()
Declaration
Task<TMemoryDbContext> GetDbContextAsync()
Returns
Type |
Description |
Task<TMemoryDbContext> |
|
Extension Methods