Is it possible to use n-tier such as business entity, business logic, data access in ASP.NET MVC? Is it efficient to use n-tier in MVC?
Is it possible to use n-tier such as business entity, business logic, data access
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes, ASP.NET MVC lends itself quite naturally to creating tiered architectures. Presentation and UI logic implemented by views and view-models can be connected by controllers to business logic and entities below, which in turn can be serviced by a data layer.