UserContext.cs 234 B

12345678910
  1. using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
  2. using Microsoft.EntityFrameworkCore;
  3. public class UserContext : IdentityDbContext
  4. {
  5. public UserContext(DbContextOptions<UserContext> options): base(options)
  6. {
  7. }
  8. }