6

我正在使用 EF/Repository/Unit of Work,但我很难理解一些细节。在 UnitOfWork 内部,我创建了一个新的 EF DbContext (EmmaContext),但是查看存储库内部,我将它转换为我知道是错误的,如何正确获取存储库中的上下文?也许我完全走错了路?

这是我的工作单元:

//Interface
public interface IUnitOfWork : IDisposable
{
    void Commit();
}

//Implementation
public class UnitOfWork : IUnitOfWork
{
    #region Fields/Properties
    private bool isDisposed = false;
    public EmmaContext Context { get; set; }
    #endregion

    #region Constructor(s)
    public UnitOfWork()
    {
        this.Context = new EmmaContext();
    }
    #endregion

    #region Methods
    public void Commit()
    {
        this.Context.SaveChanges();
    }

    public void Dispose()
    {
        if (!isDisposed)
            Dispose(true);
        GC.SuppressFinalize(this);
    }

    private void Dispose(bool disposing)
    {
        isDisposed = true;
        if (disposing)
        {
            if (this.Context != null)
                this.Context.Dispose();
        }
    }
    #endregion
}

这是存储库:

//Interface
public interface IRepository<TEntity> where TEntity : class
{
    IQueryable<TEntity> Query();
    void Add(TEntity entity);
    void Attach(TEntity entity);
    void Delete(TEntity entity);
    void Save(TEntity entity);
}

//Implementation
public abstract class RepositoryBase<TEntity> : IRepository<TEntity> where TEntity : class
{
    #region Fields/Properties
    protected EmmaContext context;
    protected DbSet<TEntity> dbSet;
    #endregion

    #region Constructor(s)
    public RepositoryBase(IUnitOfWork unitOfWork)
    {
        this.context = ((UnitOfWork)unitOfWork).Context;
        this.dbSet = context.Set<TEntity>();
    }
    #endregion

    #region Methods
    public void Add(TEntity entity)
    {
        dbSet.Add(entity);
    }

    public void Attach(TEntity entity)
    {
        dbSet.Attach(entity);
    }

    public void Delete(TEntity entity)
    {
        dbSet.Remove(entity);
    }

    public IQueryable<TEntity> Query()
    {
        return dbSet.AsQueryable();
    }

    public void Save(TEntity entity)
    {
        Attach(entity);
        context.MarkModified(entity);
    }
    #endregion
}
4

4 回答 4

4

Sam:我通常对在 ctor 中采用具体的 UnitOfWork 的具体存储库感到满意:

   public RepositoryBase(UnitOfWork unitOfWork)
   {
        this.context = unitOfWork.Context;
        this.dbSet = context.Set<TEntity>();
   }

存储库和 UoW 通常协同工作,并且需要彼此了解一点。

当然,使用这些类的代码只知道接口定义而不知道具体类型。

于 2012-08-29T00:50:02.507 回答
4

这是 我读过的最好的文章

在他们的示例中,他们像这样管理存储库:

    private SchoolContext context = new SchoolContext();
    private GenericRepository<Department> departmentRepository;
    private GenericRepository<Course> courseRepository;

    public GenericRepository<Department> DepartmentRepository
    {
        get
        {

            if (this.departmentRepository == null)
            {
                this.departmentRepository = new GenericRepository<Department>(context);
            }
            return departmentRepository;
        }
    }

您的工作单元保存上下文,如果它需要引用存储库,如果它尚未创建,它会创建它,并传入它所保存的上下文。

本文还介绍了他们如何将常规 MVC 控制器实现转换为使用工作单元模式。

于 2012-08-29T01:00:56.177 回答
1

在这篇文章中说你必须在你的存储库基础中实现 IUnitOfWork 接口。

我希望这有帮助。问候

于 2012-08-28T21:00:55.250 回答
0

工作单元
存储库

UnitOfWork 用于管理原子操作。

存储库封装了一组持久保存在数据存储中的对象以及对它们执行的操作。

如果您传递上下文或 UnitOfWork,那么您没有实现 UnitOfWork+Repository 模式,导致您从 UnitOfWork 中退出它的责任。又名你不需要它。

如果您只通过 DbSet,则正确实施。其实你不需要更多。

于 2014-01-31T16:33:30.123 回答