using Microsoft.AspNetCore.Identity.EntityFrameworkCore; using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Sugar.Enties { public class IdentityAuthDbContext : IdentityDbContext { public IdentityAuthDbContext(DbContextOptions options) : base(options) { } } }