How would you organize this in asp.net mvc?

Posted by chobo on Stack Overflow See other posts from Stack Overflow or by chobo
Published on 2010-05-15T20:36:43Z Indexed on 2010/05/15 20:44 UTC
Read the original article Hit count: 200

I have an asp.net mvc 2.0 application that contains Areas/Modules like calendar, admin, etc... There may be cases where more than one area needs to access the same Repo, so I am not sure where to put the Data Access Layers and Repositories.

First Option: Should I create Data Access Layer files (Linq to SQL in my case) with their accompanying Repositories for each area, so each area only contains the Tables, and Repositories needed by those areas.

The benefit is that everything needed to run that module is one place, so it is more encapsulated (in my mind anyway). The downside is that I may have duplicate queries, because other modules may use the same query.

Second Option Or, would it be better to place the DAL and Repositories outside the Area's and treat them as Global?

The advantage is I won't have any duplicate queries, but I may be loading a lot of unnecessary queries and DAL tables up for certain modules. It is also more work to reuse or modify these modules for future projects (though the chance of reusing them is slim to none :))

Which option makes more sense? If someone has a better way I'd love to hear it.

Thanks!

© Stack Overflow or respective owner

Related posts about asp.net-mvc

Related posts about domain-driven-design