如何在MVC应用程序中使用ASP Identity与通用存储库和UoW模式

时间:2017-06-26 15:16:56

标签: entity-framework asp.net-identity repository-pattern asp.net-mvc-5

我在MVC应用程序中使用Generic Repository和UoW Patterns。它适合我的要求。但是,由于ASP Identity与MVC的紧密耦合,我发现很难将ASP Identity与这些模式集成。我的代码如下:

// Repository Interface
public interface IRepository<TEntity> where TEntity : class
{
        TEntity Get(int id);
        IEnumerable<TEntity> GetAll();
        IEnumerable<TEntity> Find(Expression<Func<TEntity, bool>> predicate);
        void Add(TEntity entity);        
        void Remove(TEntity entity);
}

// Repository class
public class Repository<TEntity> : IRepository<TEntity> where TEntity : class
{
        // db context defined
        // IRepository implementation
}

// Domain Class
public class Author
{
        public int AuthorId { get; set; }
        public string Name { get; set; }
}

// DbContext class
public class AppContext : DbContext
{
        public AppContext() : base("name=MyContext") {}
        public virtual DbSet<Author> Authors { get; set; }
}

// Domain Interface
public interface IAuthorRepository : IRepository<Author> 
{  // implement custom methods }

// Concrete class implementation
public class AuthorRepository : Repository<Author>, IAuthorRepository
{
        public AuthorRepository(AppContext context) : base(context)
        {}

        public AppContext AppContext
        {
            get { return Context as AppContext; }
        }
}

// UnitOfWork interface
public interface IUnitOfWork : IDisposable
{
        IAuthorRepository Authors { get; }
        int Complete();
}

// Unit of work class
public class UnitOfWork : IUnitOfWork
{
    private AppContext context;

        public UnitOfWork(AppContext context)
        {
            this.context = context;
            Authors = new AuthorRepository(context);
        }

        public IAuthorRepository Authors { get; set; }

        public int Complete()
        {
            return context.SaveChanges();
        }

        // dispose context
}

public class HomeController : Controller
{
        private readonly IUnitOfWork uow;

        public HomeController(IUnitOfWork uow) // using Dependency Injection
        {
            this.uow = uow;
        }

        public ActionResult Index()
        {
            var authors = uow.Authors.GetAll();
            return View(authors);
        }
}

有人可以指导我如何将ASP Identity与上述结构集成。

提前致谢。

1 个答案:

答案 0 :(得分:0)

简短回答 - 你不这样做。

答案很长:默认模板为您提供了一个工作解决方案,所有位都可以很好地协同工作。为什么要将工作解决方案深入到您的架构中,尤其是您意识到您的架构不适合Identity解决的问题。

存储库和UoW模式很好,但不适用于Identity。身份处理身份验证,Cookie,角色,权限。存储库是关于持久化数据,关于事务的UoW。这些东西彼此不适合。因此,不要试图将圆形钉固定在方孔中。