I have my own repository that is as follows. However this does not take into account some of the new features such as the range features. Does anyone have a repository that
You can add new features like this:
public virtual void AddRange(IEnumerable entities) { DbContext.Set().AddRange(entities); } public virtual void RemoveRange(IEnumerable entities) { DbContext.Set().RemoveRange(entities); }