ASP.NET MVC: BLL and DAL to Repository design

jehad4t

New Member
We are moving from ASP.NET Web Forms to MVC 2.0. In most of our projects we have a typical setup to communicate with a database.Common (objects/entities like 'SiteMenu' and 'Users')Business Logic Layer (with calls to de Data Access Layer)Data Access LayerThe DAL has a DatabaseHelper with common database operation, an OdbcHelper with database specific operations (eg MySQL) and a StoredProcedure class with all the stored procedures.How is this design translated into a repository design? We want to use our own database helpers instead of NHibernate etc.What would you suggest?
 
Top