I've been looking at various approaches to implementing the repository pattern with EF, specifically using a generic repository.
I had been trying to use an IRepository that would have an IContext property, so that the only difference between any implementation of the IRepository would be the context. I've found this difficult enough that I've abandoned the "fake context" approach, and now just have a dictionary of List as my "context" in the fake repository:
public Dictionary<Type, object> _sets = new Dictionary<Type, object>();
And to manipulate it, would do something like this in the fake:
public void Add<T>(T entity) where T : class
{
var set = _sets[typeof (T)] as IQueryable<T>;
var updatedSet = set.ToList();
updatedSet.Add(entity);
_sets[typeof (T)] = updatedSet.AsQueryable<T>();
}
In the real repository, I can just use:
void Add<T>(T entity)
{
Set<T>().Add(entity);
}
In my Update method, I would have to have similarly different implementations to accomodate a real context inheriting DbContext, and a fake using a collection-based approach.
This approach is making me nervous. As others have mentioned in other questions, now my repository implementations are so different, that I don't feel I can trust a test until it's been run with both a fake and real repository.
Am I just a noob that is overthinking this? Or is there a better way to implement a fake context that behaves more like a DbContext so I don't have to have such drastically different classes implementing the repository interface?
To summarize: I understand the advantages of testing with an in-memory repository. My question is, when I have to make two implementations of the repository that are this different, does that mean that I am doing something wrong, or is this just the cost of testing with fakes, and if the logic tests pass, I shouldn't sweat it so much?