IdentityAuthDbContext.cs 455 B

123456789101112131415161718
  1. using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
  2. using Microsoft.EntityFrameworkCore;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace Sugar.Enties
  9. {
  10. public class IdentityAuthDbContext : IdentityDbContext<AppUser>
  11. {
  12. public IdentityAuthDbContext(DbContextOptions<IdentityAuthDbContext> options)
  13. : base(options)
  14. {
  15. }
  16. }
  17. }