labdb/Models/_AppDbContext.cs
2022-11-10 22:27:31 +01:00

18 lines
426 B
C#

using Microsoft.EntityFrameworkCore;
namespace labdb.Models;
public class AppDbContext : DbContext
{
public AppDbContext(DbContextOptions<AppDbContext> options)
: base(options)
{
}
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
base.OnModelCreating(modelBuilder);
modelBuilder.ApplyConfigurationsFromAssembly(typeof(AppDbContext).Assembly);
}
}