using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace WebApplication.Models { public class UsersContext : DbContext { public DbSet Users { get; set; } public UsersContext(DbContextOptions options) : base(options) { Database.EnsureCreated(); } } }