UserContext.cs 335 B

123456789101112
  1. using bitforum.Models.User;
  2. using Microsoft.AspNetCore.Identity;
  3. using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
  4. using Microsoft.EntityFrameworkCore;
  5. public class UserContext : IdentityDbContext<IdentityUser, IdentityRole, string>
  6. {
  7. public UserContext(DbContextOptions<UserContext> options): base(options)
  8. {
  9. }
  10. }