| 123456789101112 |
- using bitforum.Models.User;
- using Microsoft.AspNetCore.Identity;
- using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
- using Microsoft.EntityFrameworkCore;
- public class UserContext : IdentityDbContext<IdentityUser, IdentityRole, string>
- {
- public UserContext(DbContextOptions<UserContext> options): base(options)
- {
- }
- }
|