using Microsoft.EntityFrameworkCore; namespace WebApplication1.Models { public class UsersContext : DbContext { public DbSet Users { get; set; } public UsersContext(DbContextOptions options) : base(options) { Database.EnsureCreated(); } } }