MVC vs. 3-tier architecture

model-view-controllerthree-tier

What is the basic difference between MVC and 3-tier architecture?

Best Answer

3-tier is a Architecture Style and MVC is a Design Pattern.

so is Different in that.

but we could using mvc pattern in 3-tier architecture style.

so:

Presentation Tier: "Controllers and Views" from MVC Pattern.

Business Tier : "Model(Data)" from MVC Pattern.

Data Access Tier : Original Data Access Tier.

Related Topic