15 lines
331 B
C#
15 lines
331 B
C#
using Infrastructure.Models;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace Infrastructure;
|
|
|
|
public class DatabaseContext : DbContext
|
|
{
|
|
public DatabaseContext(DbContextOptions<DatabaseContext> options)
|
|
: base(options)
|
|
{
|
|
Database.EnsureCreated();
|
|
}
|
|
|
|
public DbSet<User> Users { get; set; } = null!;
|
|
} |