UsersContext.cs 333 B

1234567891011121314
  1. using Microsoft.EntityFrameworkCore;
  2. namespace WebApplication1.Models
  3. {
  4. public class UsersContext : DbContext
  5. {
  6. public DbSet<User> Users { get; set; }
  7. public UsersContext(DbContextOptions<UsersContext> options)
  8. : base(options)
  9. {
  10. Database.EnsureCreated();
  11. }
  12. }
  13. }