Expect that all tables are available
This commit is contained in:
parent
c90d3fdd3c
commit
fb0bb2b178
@ -4,13 +4,13 @@ namespace DataModel.Database.Common;
|
|||||||
|
|
||||||
public sealed class DataContext : DbContext
|
public sealed class DataContext : DbContext
|
||||||
{
|
{
|
||||||
public DbSet<Setting>? Settings { get; set; }
|
public DbSet<Setting> Settings { get; set; }
|
||||||
|
|
||||||
public DbSet<Section>? Sections { get; set; }
|
public DbSet<Section> Sections { get; set; }
|
||||||
|
|
||||||
public DbSet<TextElement>? TextElements { get; set; }
|
public DbSet<TextElement> TextElements { get; set; }
|
||||||
|
|
||||||
public DbSet<Translation>? Translations { get; set; }
|
public DbSet<Translation> Translations { get; set; }
|
||||||
|
|
||||||
public DataContext(DbContextOptions<DataContext> contextOptions) : base(contextOptions)
|
public DataContext(DbContextOptions<DataContext> contextOptions) : base(contextOptions)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user