在ASP.NET Core应用程序中,使用UnitOfWork(工作单元)模式来管理数据持久性通常是一个常见的模式。如果一个应用程序需要使用Identity来实现用户身份验证和授权,那么将Identity与UnitOfWork集成可能会出现一些问题。以下是一些可能的解决方案。
下面的代码片段展示了如何在ASP.NET Core应用中集成Identity和UnitOfWork。
首先,创建一个包含IdentityUser和ApplicationDbContext的IdentityContext类。该DbContext就是用于管理Identity所需的数据持久性。
public class IdentityContext : IdentityDbContext
{
public IdentityContext(DbContextOptions options) : base(options)
{
}
}
接下来,实现IUnitOfWork接口来管理其他DbContext:
public interface IUnitOfWork
{
void SaveChanges();
}
public class UnitOfWork : IUnitOfWork
{
private readonly DbContext _dbContext;
public UnitOfWork(DbContext dbContext)
{
_dbContext = dbContext;
}
public void SaveChanges()
{
_dbContext.SaveChanges();
}
}
为了将UnitOfWork注入到Identity中,需要注册一个UserService:
services.AddScoped();
services.AddScoped(s => new UnitOfWork(s.GetService()));
最后,实现IUserService接口:
public interface IUserService
{
void CreateUser(IdentityUser user);
}
public class UserService : IUserService
{
private readonly IdentityContext _context;
private readonly IUnitOfWork _unitOfWork;
public UserService(IdentityContext context, IUnitOfWork unitOfWork)
{
_context = context;
_unitOfWork = unitOfWork;
}
public void CreateUser(IdentityUser user)
{
_context.Users.Add(user);
_unitOfWork.SaveChanges();
}
}
现在,我们有了一个完整集成了Identity和UnitOfWork的项目,可以安全地使用它来进行用户身份验证和授权。
另一个解决方案是将