I want to find out if it makes sense to use the Entity Framework code first ctp 5 IDbSet in a Repository base class .

I am using the Repository Pattern(and would like to follow the persistence ignorance method) for my implementations and I would like to use fake data for testing(by using a fake in memory IDBset implementation).

I feel that adding a dependency to the System.Data.Entity.IDbSet would tie my implementation of the repository base class to the IDBset and if there are any future changes to it that might break the code. What is the best way of implementaing a repository base class without the Idbset dependency?

I am following this post :EF CTP4 Tips & Tricks: Testing With Fake DbContext to implement fakes.

//_dbset impliments the IDBset

//Database inherits from DbContext

    protected RepositoryBase(UnitOfWork  unitOfWork)
    {
        _unitOfWork = unitOfWork;
        _dbset = _unitOfWork.Database.Set<T>();
    }       

    public virtual void Add(T entity)
    {
        _dbset.Add(entity);
    }

    public virtual void Delete(T entity)
    {
        _dbset.Remove(entity);
    }

    public virtual T GetById(long id)
    {
        return _dbset.Find(id);
    }

    public virtual IEnumerable<T> All()
    {
        return _dbset.ToList();
    }
link|improve this question
+1 for the link to "Testing With Fake DbContext". Exactly what I was looking for! – Ken Pespisa May 4 '11 at 21:02
feedback

1 Answer

up vote 2 down vote accepted

It is a point of repository to wrap dependencies on mapping layer. So in your case you will have dependency on EF CTP5 and IDbSet - that is correct. That is a correct approach. If you want to test your code you will for example:

  • Mock whole repository when unit testing upper layer
  • Use concrete repository for integration tests
link|improve this answer
Thank you this makes sense to me now. – kwiri Mar 14 '11 at 13:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.