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