UsersContext.cs 429 B

123456789101112131415161718
  1. using Microsoft.EntityFrameworkCore;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Threading.Tasks;
  6. namespace WebApplication.Models
  7. {
  8. public class UsersContext : DbContext
  9. {
  10. public DbSet<User> Users { get; set; }
  11. public UsersContext(DbContextOptions<UsersContext> options)
  12. : base(options)
  13. {
  14. Database.EnsureCreated();
  15. }
  16. }
  17. }