12 lines
263 B
C#
12 lines
263 B
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace back.Domain;
|
|
|
|
public class ApplicationDbContext : DbContext
|
|
{
|
|
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options) : base(options)
|
|
{
|
|
Database.EnsureCreated();
|
|
Database.Migrate();
|
|
}
|
|
} |