5
\$\begingroup\$

I'm using this pattern since a few months and I was wondering if I can make it any better.

The one thing I am not satisfied about is the dispose method. In every repository I have to add a dispose method that calls the base dispose method. Is there a way to get rid of the dispose method in every repository and just let it (automatically) call the base dispose method?

I'm using Linq2Sql.

Interface:

 public interface IRepository<TEntityType> where TEntityType : class
{
 TEntityType GetById(int id);
 IQueryable<TEntityType> GetAll();
 void Delete(TEntityType item);
 void Add(TEntityType item);
}

Base:

 public class BaseRepository<TEntityType> where TEntityType : class
{
 private readonly DataClassesDataContext _dataContext;
 protected BaseRepository()
 {
 _dataContext = new DataClassesDataContext();
 }
 protected Table<TEntityType> GetTable()
 {
 return _dataContext.GetTable<TEntityType>();
 }
 protected void SaveChanges()
 {
 _dataContext.SubmitChanges();
 }
 protected virtual void Dispose()
 {
 if (_dataContext != null)
 {
 _dataContext.Dispose();
 }
 }
}

Repository class:

 public class FirstClassRepository : BaseRepository<FirstTable>, IRepository<FirstTable>, IDisposable
{
 public FirstTable GetById(int id)
 {
 return GetTable().FirstOrDefault(x => x.Test == id);
 }
 public IQueryable<FirstTable> GetAll()
 {
 return GetTable();
 }
 public void Delete(FirstTable item)
 {
 GetTable().DeleteOnSubmit(item);
 }
 public void Add(FirstTable item)
 {
 GetTable().InsertOnSubmit(item);
 }
 public new void Dispose()
 {
 base.Dispose();
 }
}
Jamal
35.2k13 gold badges134 silver badges238 bronze badges
asked Aug 4, 2014 at 18:22
\$\endgroup\$
4
  • \$\begingroup\$ what is DataClassesDataContext? are u using linq to sql? \$\endgroup\$ Commented Aug 4, 2014 at 19:24
  • \$\begingroup\$ @paritosh Yes i am. The topic said that already \$\endgroup\$ Commented Aug 4, 2014 at 19:41
  • \$\begingroup\$ Is BaseRepository always meant to be extended? \$\endgroup\$ Commented Aug 4, 2014 at 21:37
  • \$\begingroup\$ @mariosangiorgio its what you prefer. I did saw some people using a base class and some skip this and tell somewhere else wat entity they want. I prefer this pattern. \$\endgroup\$ Commented Aug 4, 2014 at 22:06

1 Answer 1

4
\$\begingroup\$

The one thing I am not satisfied about is the dispose method. In every repository I have to add a dispose method that calls the base dispose method.

IDisposable
The IDisposable interface should be impelemented in the base class. By using the default pattern of disposing, you will get this result

public class BaseRepository<TEntityType> : IDisposable where TEntityType : class
{
 private readonly DataClassesDataContext _dataContext;
 protected BaseRepository()
 {
 _dataContext = new DataClassesDataContext();
 }
 protected Table<TEntityType> GetTable()
 {
 return _dataContext.GetTable<TEntityType>();
 }
 protected void SaveChanges()
 {
 _dataContext.SubmitChanges();
 }
 public void Dispose()
 {
 Dispose(true);
 GC.SuppressFinalize(this);
 }
 ~BaseRepository()
 {
 Dispose(false);
 }
 protected void Dispose(Boolean disposing)
 {
 // free unmanaged ressources here
 if (disposing)
 {
 // This method is called from Dispose() so it is safe to
 // free managed ressources here
 if (_dataContext != null)
 {
 _dataContext.Dispose();
 }
 }
 }
}

But wait, what if you also need to dispose ressources of the FirstClassRepository object which descends from that object. Then the FirstClassRepositoryobject also needs to implement the IDisposable interface with the pattern below.

public class FirstClassRepository : BaseRepository<FirstTable>, IRepository<FirstTable>, IDisposable
{
 public FirstTable GetById(int id)
 {
 return GetTable().FirstOrDefault(x => x.Test == id);
 }
 public IQueryable<FirstTable> GetAll()
 {
 return GetTable();
 }
 public void Delete(FirstTable item)
 {
 GetTable().DeleteOnSubmit(item);
 }
 public void Add(FirstTable item)
 {
 GetTable().InsertOnSubmit(item);
 }
 public void Dispose()
 {
 try
 {
 Dispose(true); //true: safe to free managed resources
 GC.SuppressFinalize(this);
 }
 finally
 {
 base.Dispose();
 }
 }
 ~FirstClassRepository()
 {
 Dispose(false);
 }
 protected void Dispose(Boolean disposing)
 {
 // free unmanaged ressources here
 if (disposing)
 {
 // This method is called from Dispose() so it is safe to
 // free managed ressources here
 }
 }
}

If the FirstClassRepository obect doesn't need to dispose ressources you can omit the implementation of IDisposable.

EDIT based on comment:

The ~FirstClassRepository() method is what the compiler takes as beeing the Finalize() method of the object. If you forget to call the Dispose() method of that object, this method will be called at the time your object is destructed.
So as the method is implemented by calling the overloaded Dispose(Boolean) method with the parameter == false, only unmanaged ressources will be freed (where the comment is written) as the GC takes care of the managed objects.

Otherwise your implementation looks fine for me.

Some SO links
proper-use-of-the-idisposable-interface
when-should-i-use-gc-suppressfinalize

answered Aug 5, 2014 at 6:44
\$\endgroup\$
1
  • 1
    \$\begingroup\$ Thanks for your clear answer, i do have one question. What does: ~BaseRepository() { Dispose(false); } do? \$\endgroup\$ Commented Aug 6, 2014 at 12:02

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.