In this final part of the Movie Inventory ASP.NET MVC Web Application tutorial I show you a simple version of the frontend part and the usage of formerly written UnitOfWork in order to manipulate the database easily. This last project …
Tag: asp.net
In this part I will show what a Business Logic Layer (BLL) should contain. We will use Repository Pattern and Unit Of Work design pattern. What are these (in few words)? Unit Of Work does 2 really important things: it …
As mentioned in the previous post, this part will show the DAL project of our Movie Inventory ASP.NET MVC web application. This small Data Access Layer class library project contains only our context declaration, the relations of the entities and …
In this tutorial I show you how easily you can create a simple ASP.NET MVC web application with Entity Framework and N-Tier architecture. The application will a simple movie inventory for home usage. You can add movies to the database …
In the following tutorial I will show you how to easily create an ASP.NET MVC Web Application with SQL usage through Entity Framework. This tutorial is mainly for newbies, beginner developers. The frontend uses HTML, CSS (and BootStrap) with Razor …
I was asked to create a simple webform that contains one DropDownList, filled up data from SQL and by selecting any of them show the associated image. First of all, I’ve created the database on the SQL server (using Windows …