Files
LaDOSE/LaDOSE.Src/LaDOSE.Entity/Context/LaDOSEDbContext.cs
2018-10-06 13:05:38 +02:00

22 lines
537 B
C#

using Microsoft.EntityFrameworkCore;
namespace LaDOSE.Entity.Context
{
public class LaDOSEDbContext : DbContext
{
public DbSet<Game> Game { get; set; }
public DbSet<ApplicationUser> ApplicationUser { get; set; }
public DbSet<Season> Season { get; set; }
public LaDOSEDbContext(DbContextOptions options) : base(options)
{
}
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
base.OnModelCreating(modelBuilder);
}
}
}