Does MVC replace traditional manually created UI, BLL, DAL ?

Posted by used2could on Stack Overflow See other posts from Stack Overflow or by used2could
Published on 2010-04-22T12:26:28Z Indexed on 2010/04/22 12:33 UTC
Read the original article Hit count: 253

Filed under:
|
|

I'm use to creating the UI, BLL, DAL by hand (some times i've used LINQ-SQL or SubSonic for the DAL). I've done several small projects using MVC since it's release. On these projects i've still continued to write a BLL and DAL by hand and then incorporate those into the MVC's models/controllers. Looking to optimize my time on projects this seems like over kill and a potential waste of time.

My question is: Would it be acceptable to roll a DAL such as SubSonic and directly use it in the Models/Controllers of my MVC web app? Now the models & controllers would act as the BLL. I just see this as a major time savor to not have to worry about another tier.

(Agree ? "Please state way" : "Make argument")

© Stack Overflow or respective owner

Related posts about asp.net-mvc

Related posts about c#