{"id":752,"date":"2023-06-20T07:01:31","date_gmt":"2023-06-20T07:01:31","guid":{"rendered":"https:\/\/www.softwaretraininginchennai.com\/blog\/?p=752"},"modified":"2026-01-05T07:30:38","modified_gmt":"2026-01-05T07:30:38","slug":"three-tier-three-layer-architecture","status":"publish","type":"post","link":"https:\/\/www.softwaretraininginchennai.com\/blog\/three-tier-three-layer-architecture\/","title":{"rendered":"Three Tier Architecture in MVC"},"content":{"rendered":"\r\n<p><strong><u>Three Tier (Three Layer) Architecture<\/u><\/strong><u><\/u><\/p>\r\n\r\n\r\n\r\n<p>With a three-layer design, the project is divided into three layers: the user interface layer, the business layer, and the data layer (database), where we divide the UI, logic, and data into three groups. If a user wants to switch the user interface from a Windows computer to a smartphone, he or she simply needs to alter the UI layer; all other layers are unaffected. Like this, if a user wishes to change a database, he simply needs to update the data layer; everything else stays the same.<\/p>\r\n\r\n\r\n\r\n<p>The widely used three-tier (or three-layer) architecture is a way to organise the codebase. This architecture divides the codebase into three distinct levels, each with a unique set of duties:<\/p>\r\n\r\n\r\n\r\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex\">\r\n<figure class=\"wp-block-image size-large\"><img fetchpriority=\"high\" decoding=\"async\" width=\"553\" height=\"415\" data-id=\"753\" class=\"wp-image-753\" src=\"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-content\/uploads\/2023\/06\/Picture1.png\" alt=\"\" srcset=\"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-content\/uploads\/2023\/06\/Picture1.png 553w, https:\/\/www.softwaretraininginchennai.com\/blog\/wp-content\/uploads\/2023\/06\/Picture1-300x225.png 300w\" sizes=\"(max-width: 553px) 100vw, 553px\" \/><\/figure>\r\n<\/figure>\r\n\r\n\r\n\r\n<p><strong>Presentation layer:<\/strong>\u00a0This is the application&#8217;s user interface, which shows the user the features and data of the programme.<\/p>\r\n\r\n\r\n\r\n<p><strong>Business logic (or Application) layer:<\/strong>\u00a0The business logic that powers the application&#8217;s essential features is contained in this layer. as processing the data moving between the other two layers and making judgements, calculations, and evaluations.<\/p>\r\n\r\n\r\n\r\n<p><strong>Data access layer (or Data) layer:<\/strong>\u00a0To save and recover application data, this layer communicates with databases.<\/p>\r\n\r\n\r\n\r\n<p><strong><em>Advantages of using three-tier architecture are:<\/em><\/strong><\/p>\r\n\r\n\r\n\r\n<p><strong>Accelerated development:<\/strong> Reducing product time to market and enabling developers to use the most current tools and layer appropriate languages.<\/p>\r\n\r\n\r\n\r\n<p><strong>Improved scalability:<\/strong>\u00a0 By deploying apps on many levels, each tier may always be scaled separately.<\/p>\r\n\r\n\r\n\r\n<p><strong>Improved Reliability:<\/strong> By using several tiers, you may execute additional components of your application on other servers and employ results that have been cached to improve reliability and availability.<\/p>\r\n\r\n\r\n\r\n<p><strong>Enhance security:<\/strong> By using a well-designed application layer as a private firewall to help avoid receptive weaknesses like SQL injection.<\/p>\r\n\r\n\r\n\r\n<p>The package of different layers is as follows.<\/p>\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\">\r\n<li><em>Presentation Layer &#8211; controller package<\/em><\/li>\r\n\r\n\r\n\r\n<li><em>Business Logic Layer &#8211; service package<\/em><\/li>\r\n\r\n\r\n\r\n<li><em>Data Access Layer &#8211; repository package\u00a0<\/em><\/li>\r\n<\/ul>\r\n\r\n\r\n\r\n<p><strong><u>Three Layer Architecture using MVC Sample:<\/u><\/strong><\/p>\r\n\r\n\r\n\r\n<p>Create an empty MVC web application project with Project name \u201cWebApp\u201d and solution name \u201cTLA\u201d. This WebApp project is the presentation layer.<\/p>\r\n\r\n\r\n\r\n<p>In Solution TLA, add a new project to create business logic \u00e0 Class library (.net framewok) \u00e0 name the project as BusinessLayer.<\/p>\r\n\r\n\r\n\r\n<p>Again, in Solution TLA, add a new project to create data access \u00e0 Class library (.net framewok) \u00e0 name the project as DataBaseLayer.<br \/>Add BusinessLayer &amp; DataBaseLayer as reference in \u201cWebApp\u201d.<\/p>\r\n\r\n\r\n\r\n<p>Add BusinessLayer as reference in \u201cDataBaseLayer\u201d.<\/p>\r\n\r\n\r\n\r\n<p>In sql server explorer, add a new database with name \u201cMYDB\u201d and create a table with name \u201cRegistration\u201d.<\/p>\r\n\r\n\r\n\r\n<figure class=\"wp-block-table\">\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>CREATE TABLE [dbo].[Registration](<br \/>[RegId] [int] IDENTITY(1,1) NOT NULL,<br \/>[FullName] varchar NULL,<br \/>[Address] varchar NULL,<br \/>[Gender] varchar NULL,<br \/>[City] varchar NULL,<br \/>[DoB] [date] NULL,<br \/>[Cno] varchar NULL,<br \/>PRIMARY KEY CLUSTERED ([RegId] ASC)<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<\/figure>\r\n\r\n\r\n\r\n<p>In \u201cDataBaseLayer\u201d, add the model file using \u201cado.net entity data model\u201d.<\/p>\r\n\r\n\r\n\r\n<p>Once model is created, copy the connection string from app.config of \u201cDataBaseLayer\u201d and paste it in web.config of \u201cWebApp\u201d.<\/p>\r\n\r\n\r\n\r\n<p>In \u201cBusinessLayer\u201d, create a class file with name \u201cRegistrationModel\u201d and replace with below snippet.<\/p>\r\n\r\n\r\n\r\n<figure class=\"wp-block-table\">\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>public class RegistrationModel<br \/>{<br \/>public int RegId { get; set; }<br \/>public string FullName { get; set; }<br \/>public string Address { get; set; }<br \/>public string Gender { get; set; }<br \/>public string City { get; set; }<br \/>public Nullable DoB { get; set; }<br \/>public string Cno { get; set; }<br \/>}<\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<\/figure>\r\n\r\n\r\n\r\n<p>In \u201cDataBaseLayer\u201d, add a new folder with name \u201cDBOperation\u201d, in it, add a class file with name \u201cManageRegistration\u201d and replace with below snippet.<\/p>\r\n\r\n\r\n\r\n<figure class=\"wp-block-table\">\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>public class ManageRegistration<br \/>{<br \/>public void AddReg(RegistrationModel regModel)<br \/>{<br \/>using (var DB = new MYDBEntities())<br \/>{<br \/>Registration Reg = new Registration()<br \/>{<br \/><code>FullName = regModel.FullName, <\/code><br \/><code>Address = regModel.Address, <\/code><br \/><code>Gender = regModel.Gender, <\/code><br \/><code>City = regModel.City, <\/code><br \/><code>DoB = regModel.DoB, <\/code><br \/><code>Cno = regModel.Cno <\/code><br \/><code>}; <\/code><br \/><code>DB.Registrations.Add(Reg); <\/code><br \/><code>DB.SaveChanges(); <\/code><br \/><code>} <\/code><br \/><code>} <\/code><br \/><code>}<\/code><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<\/figure>\r\n\r\n\r\n\r\n<p>Then add EntityFramework.dll and EntityFramework.SqlServer.dll references in \u201cWebApp\u201d.<\/p>\r\n\r\n\r\n\r\n<p>So now the business layer and data layer has been completely created.<\/p>\r\n\r\n\r\n\r\n<p>Now, in WebApp (i. e. in presentation layer), add a new controller with name \u201cHome controller\u201d and replace with below snippet.<\/p>\r\n\r\n\r\n\r\n<figure class=\"wp-block-table\">\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>public class HomeController : Controller<br \/>{<br \/>\/\/ GET: Home<br \/>public ActionResult Index()<br \/>{<br \/>return View();<br \/>}<br \/>ManageRegistration ManageReg = new ManageRegistration();<br \/>[HttpPost]<br \/>public void AddReg(FormCollection Form)<br \/>{<br \/>RegistrationModel registrationModel = new RegistrationModel()<br \/>{<br \/><code>FullName = Form[\"txtName\"], <\/code><br \/><code>Address = Form[\"txtAddress\"], <\/code><br \/><code>Gender = Form[\"rdbGender\"], <\/code><br \/><code>City = Form[\"txtCity\"], <\/code><br \/><code>DoB = Convert.ToDateTime(Form[\"txtDoB\"]), <\/code><br \/><code>Cno = Form[\"txtCno\"] <\/code><br \/><code>}; <\/code><br \/><code>ManageReg.AddReg(registrationModel); <\/code><br \/><code>Response.Write(\"Saved\"); <\/code><br \/><code>} <\/code><br \/><code>}<\/code><\/td>\r\n<\/tr>\r\n<\/tbody>\r\n<\/table>\r\n<\/figure>\r\n\r\n\r\n\r\n<p>Add index view with empty without model and put the below html and ajax snippet in it<\/p>\r\n\r\n\r\n\r\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-2 is-layout-flex wp-block-gallery-is-layout-flex\">\r\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"329\" height=\"503\" data-id=\"755\" class=\"wp-image-755\" src=\"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-content\/uploads\/2023\/06\/3la1.png\" alt=\"\" srcset=\"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-content\/uploads\/2023\/06\/3la1.png 329w, https:\/\/www.softwaretraininginchennai.com\/blog\/wp-content\/uploads\/2023\/06\/3la1-196x300.png 196w\" sizes=\"(max-width: 329px) 100vw, 329px\" \/><\/figure>\r\n<\/figure>\r\n\r\n\r\n\r\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-3 is-layout-flex wp-block-gallery-is-layout-flex\">\r\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"322\" height=\"235\" data-id=\"756\" class=\"wp-image-756\" src=\"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-content\/uploads\/2023\/06\/3la2.png\" alt=\"\" srcset=\"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-content\/uploads\/2023\/06\/3la2.png 322w, https:\/\/www.softwaretraininginchennai.com\/blog\/wp-content\/uploads\/2023\/06\/3la2-300x219.png 300w\" sizes=\"(max-width: 322px) 100vw, 322px\" \/><\/figure>\r\n<\/figure>\r\n\r\n\r\n\r\n<p>Run the program<\/p>\r\n","protected":false},"excerpt":{"rendered":"<p>Three Tier (Three Layer) Architecture With a three-layer design, the project is divided into three layers: the user interface layer, the business layer, and the data layer (database), where we divide the UI, logic, and data into three groups. If a user wants to switch the user interface from a Windows computer to a smartphone, [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[277,2,3,281,4,6,279,234,1],"tags":[14,20],"class_list":["post-752","post","type-post","status-publish","format-standard","hentry","category-asp-net-core","category-dot-net-training","category-dot-net-training-in-chennai","category-dot-net-training-in-india","category-information-on-dotnet","category-mvc-training-tutorials","category-oop-concept","category-sql-server","category-uncategorized","tag-net-training-in-chennai","tag-asp-net-training-in-chennai"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Three Tier Architecture in MVC | Maria Academy<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.softwaretraininginchennai.com\/blog\/three-tier-three-layer-architecture\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Three Tier Architecture in MVC | Maria Academy\" \/>\n<meta property=\"og:description\" content=\"Three Tier (Three Layer) Architecture With a three-layer design, the project is divided into three layers: the user interface layer, the business layer, and the data layer (database), where we divide the UI, logic, and data into three groups. If a user wants to switch the user interface from a Windows computer to a smartphone, [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.softwaretraininginchennai.com\/blog\/three-tier-three-layer-architecture\/\" \/>\n<meta property=\"og:site_name\" content=\"Maria Academy\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/DotnetTrainingChennai\" \/>\n<meta property=\"article:published_time\" content=\"2023-06-20T07:01:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-01-05T07:30:38+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-content\/uploads\/2023\/06\/Picture1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"553\" \/>\n\t<meta property=\"og:image:height\" content=\"415\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@dotnettraining2\" \/>\n<meta name=\"twitter:site\" content=\"@dotnettraining2\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/three-tier-three-layer-architecture\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/three-tier-three-layer-architecture\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/#\/schema\/person\/e7dbda3490333ae356b6ad09076c8a6e\"},\"headline\":\"Three Tier Architecture in MVC\",\"datePublished\":\"2023-06-20T07:01:31+00:00\",\"dateModified\":\"2026-01-05T07:30:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/three-tier-three-layer-architecture\/\"},\"wordCount\":662,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/three-tier-three-layer-architecture\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-content\/uploads\/2023\/06\/Picture1.png\",\"keywords\":[\".net training in Chennai\",\"Asp.net Training in chennai\"],\"articleSection\":[\"ASP.NET Core\",\"dot net training\",\"dot net training in chennai\",\"Dot Net training in india\",\"information on dotnet\",\"MVC Training Tutorials\",\"OOP Concept\",\"SQL Server\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.softwaretraininginchennai.com\/blog\/three-tier-three-layer-architecture\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/three-tier-three-layer-architecture\/\",\"url\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/three-tier-three-layer-architecture\/\",\"name\":\"Three Tier Architecture in MVC | Maria Academy\",\"isPartOf\":{\"@id\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/three-tier-three-layer-architecture\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/three-tier-three-layer-architecture\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-content\/uploads\/2023\/06\/Picture1.png\",\"datePublished\":\"2023-06-20T07:01:31+00:00\",\"dateModified\":\"2026-01-05T07:30:38+00:00\",\"author\":{\"@id\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/#\/schema\/person\/e7dbda3490333ae356b6ad09076c8a6e\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/three-tier-three-layer-architecture\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.softwaretraininginchennai.com\/blog\/three-tier-three-layer-architecture\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/three-tier-three-layer-architecture\/#primaryimage\",\"url\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-content\/uploads\/2023\/06\/Picture1.png\",\"contentUrl\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-content\/uploads\/2023\/06\/Picture1.png\",\"width\":553,\"height\":415},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/three-tier-three-layer-architecture\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Three Tier Architecture in MVC\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/#website\",\"url\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/\",\"name\":\"Maria Academy\",\"description\":\"Dot Net Training in Chennai, Best Dot Net Training Institute in Chennai, .Net Training in Chennai\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.softwaretraininginchennai.com\/blog\/#\/schema\/person\/e7dbda3490333ae356b6ad09076c8a6e\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/f68fba18793457e0192658e2fe53431c0fb4a1d551aef61c57c1847324110d80?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f68fba18793457e0192658e2fe53431c0fb4a1d551aef61c57c1847324110d80?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/f68fba18793457e0192658e2fe53431c0fb4a1d551aef61c57c1847324110d80?s=96&d=mm&r=g\",\"caption\":\"admin\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Three Tier Architecture in MVC | Maria Academy","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.softwaretraininginchennai.com\/blog\/three-tier-three-layer-architecture\/","og_locale":"en_US","og_type":"article","og_title":"Three Tier Architecture in MVC | Maria Academy","og_description":"Three Tier (Three Layer) Architecture With a three-layer design, the project is divided into three layers: the user interface layer, the business layer, and the data layer (database), where we divide the UI, logic, and data into three groups. If a user wants to switch the user interface from a Windows computer to a smartphone, [&hellip;]","og_url":"https:\/\/www.softwaretraininginchennai.com\/blog\/three-tier-three-layer-architecture\/","og_site_name":"Maria Academy","article_publisher":"https:\/\/www.facebook.com\/DotnetTrainingChennai","article_published_time":"2023-06-20T07:01:31+00:00","article_modified_time":"2026-01-05T07:30:38+00:00","og_image":[{"width":553,"height":415,"url":"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-content\/uploads\/2023\/06\/Picture1.png","type":"image\/png"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@dotnettraining2","twitter_site":"@dotnettraining2","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.softwaretraininginchennai.com\/blog\/three-tier-three-layer-architecture\/#article","isPartOf":{"@id":"https:\/\/www.softwaretraininginchennai.com\/blog\/three-tier-three-layer-architecture\/"},"author":{"name":"admin","@id":"https:\/\/www.softwaretraininginchennai.com\/blog\/#\/schema\/person\/e7dbda3490333ae356b6ad09076c8a6e"},"headline":"Three Tier Architecture in MVC","datePublished":"2023-06-20T07:01:31+00:00","dateModified":"2026-01-05T07:30:38+00:00","mainEntityOfPage":{"@id":"https:\/\/www.softwaretraininginchennai.com\/blog\/three-tier-three-layer-architecture\/"},"wordCount":662,"commentCount":0,"image":{"@id":"https:\/\/www.softwaretraininginchennai.com\/blog\/three-tier-three-layer-architecture\/#primaryimage"},"thumbnailUrl":"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-content\/uploads\/2023\/06\/Picture1.png","keywords":[".net training in Chennai","Asp.net Training in chennai"],"articleSection":["ASP.NET Core","dot net training","dot net training in chennai","Dot Net training in india","information on dotnet","MVC Training Tutorials","OOP Concept","SQL Server"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.softwaretraininginchennai.com\/blog\/three-tier-three-layer-architecture\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.softwaretraininginchennai.com\/blog\/three-tier-three-layer-architecture\/","url":"https:\/\/www.softwaretraininginchennai.com\/blog\/three-tier-three-layer-architecture\/","name":"Three Tier Architecture in MVC | Maria Academy","isPartOf":{"@id":"https:\/\/www.softwaretraininginchennai.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.softwaretraininginchennai.com\/blog\/three-tier-three-layer-architecture\/#primaryimage"},"image":{"@id":"https:\/\/www.softwaretraininginchennai.com\/blog\/three-tier-three-layer-architecture\/#primaryimage"},"thumbnailUrl":"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-content\/uploads\/2023\/06\/Picture1.png","datePublished":"2023-06-20T07:01:31+00:00","dateModified":"2026-01-05T07:30:38+00:00","author":{"@id":"https:\/\/www.softwaretraininginchennai.com\/blog\/#\/schema\/person\/e7dbda3490333ae356b6ad09076c8a6e"},"breadcrumb":{"@id":"https:\/\/www.softwaretraininginchennai.com\/blog\/three-tier-three-layer-architecture\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.softwaretraininginchennai.com\/blog\/three-tier-three-layer-architecture\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.softwaretraininginchennai.com\/blog\/three-tier-three-layer-architecture\/#primaryimage","url":"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-content\/uploads\/2023\/06\/Picture1.png","contentUrl":"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-content\/uploads\/2023\/06\/Picture1.png","width":553,"height":415},{"@type":"BreadcrumbList","@id":"https:\/\/www.softwaretraininginchennai.com\/blog\/three-tier-three-layer-architecture\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.softwaretraininginchennai.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Three Tier Architecture in MVC"}]},{"@type":"WebSite","@id":"https:\/\/www.softwaretraininginchennai.com\/blog\/#website","url":"https:\/\/www.softwaretraininginchennai.com\/blog\/","name":"Maria Academy","description":"Dot Net Training in Chennai, Best Dot Net Training Institute in Chennai, .Net Training in Chennai","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.softwaretraininginchennai.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.softwaretraininginchennai.com\/blog\/#\/schema\/person\/e7dbda3490333ae356b6ad09076c8a6e","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/f68fba18793457e0192658e2fe53431c0fb4a1d551aef61c57c1847324110d80?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f68fba18793457e0192658e2fe53431c0fb4a1d551aef61c57c1847324110d80?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f68fba18793457e0192658e2fe53431c0fb4a1d551aef61c57c1847324110d80?s=96&d=mm&r=g","caption":"admin"}}]}},"_links":{"self":[{"href":"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-json\/wp\/v2\/posts\/752","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-json\/wp\/v2\/comments?post=752"}],"version-history":[{"count":5,"href":"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-json\/wp\/v2\/posts\/752\/revisions"}],"predecessor-version":[{"id":1729,"href":"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-json\/wp\/v2\/posts\/752\/revisions\/1729"}],"wp:attachment":[{"href":"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-json\/wp\/v2\/media?parent=752"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-json\/wp\/v2\/categories?post=752"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.softwaretraininginchennai.com\/blog\/wp-json\/wp\/v2\/tags?post=752"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}