Click here to Skip to main content
15,892,674 members
Articles / Web Development / ASP.NET

Repositories, Unit Of Work and ASP.NET MVC

Rate me:
Please Sign up or sign in to vote.
1.00/5 (1 vote)
17 Feb 2012LGPL3 20.3K   7   2
Repositories, Unit Of Work and ASP.NET MVC

There are a lot of posts discussing repository implementations, unit of work and ASP.NET MVC. This post is an attempt to give you an answer which addresses all three issues.

Repositories

Do NOT create generic repositories. They look fine when you look at them. But as the application grows, you’ll notice that you have to do some workarounds in them which will break open/closed principle.

It’s much better to create repositories that are specific for an entity and it’s aggregate since it’s much easier to show intent. And you’ll also only create methods that you really need, YAGNI.

Generic repositories also remove the whole idea with choosing an OR/M since you can’t use your favorite OR/Ms features.

Unit Of Work

Most OR/Ms available do already implement the UoW pattern. You simply just need to create an interface and make an adapter (Google Adapter pattern) implementation for your OR/M.

Interface:

C#
public interface IUnitOfWork : IDisposable
{
    void SaveChanges();
}

NHibernate sample implementation:

C#
public class NHibernateUnitOfWork : IUnitOfWork
{
    private readonly ITransaction _transaction;

    public NHibernateUnitOfWork(ISession session)
    {
        if (session == null) throw new ArgumentNullException("session");
        _transaction = session.BeginTransaction();
    }

    public void Dispose()
    {
        if (!_transaction.WasCommitted)
            _transaction.Rollback();

        _transaction.Dispose();
    }

    public void SaveChanges()
    {
        _transaction.Commit();
    }
}

ASP.NET MVC

I prefer to use an attribute to handle transactions in MVC. It makes the action methods cleaner:

C#
[HttpPost, Transactional]
public ActionResult Update(YourModel model)
{
    //your logic here
}

And the attribute implementation:

C#
public class TransactionalAttribute : ActionFilterAttribute
{
    private IUnitOfWork _unitOfWork;

    public override void OnActionExecuting(ActionExecutingContext filterContext)
    {
        _unitOfWork = DependencyResolver.Current.GetService<IUnitOfWork>();

        base.OnActionExecuting(filterContext);
    }

    public override void OnActionExecuted(ActionExecutedContext filterContext)
    {
        // let the container dispose/rollback the UoW.
        if (filterContext.Exception == null)
            _unitOfWork.SaveChanges();

        base.OnActionExecuted(filterContext);
    }
}

License

This article, along with any associated source code and files, is licensed under The GNU Lesser General Public License (LGPLv3)


Written By
Founder 1TCompany AB
Sweden Sweden

Comments and Discussions

 
GeneralMy vote of 1 Pin
SwapnadipSaha28-Feb-12 19:49
SwapnadipSaha28-Feb-12 19:49 
GeneralRe: My vote of 1 Pin
jgauffin29-Feb-12 22:44
jgauffin29-Feb-12 22:44 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.