Creating ASP.NET MVC 5 Application using Entity Framework 6 and Identity with CRUD Operations on visual studio 2015 - Part 1

In this tutorial i am going to teach you how to create a project in ASP.NET MVC 5 using entity framework 6.x and identity with CRUD operations on visual studio 2015 from scratch where you can learn every single detail about the code how it works. This includes the complete patient registration module of HIMS(Hospital information management system) with complete patient search, edit, update and delete functionality. This tutorial will be help for building your own website as well as for FYP of the students. So I made this tutorial for beginners, explained everything and built from scratch. Hopefully after this, you could try to build your own site using ASP.NET MVC 5. If you have any query please feel free and post a comment right below. Other part of series:
  1. Creating SQL Server database Part-2?
  2. Creating Entity Framework project Part-3 ?
  3. Customize the default template of ASP.NET MVC 5 Part-4 ?
  4. How to add a controller and view Part-5 ?
  5. How to Add Model Part-6 ?
  6. How to make a patient registration form Part-7?
  1. Creating your ASP.NET MVC 5 application

    1. Install the Visual Studio 2015. 
    2. Let's create your empty solution first, open your visual studio 2015 and go to new project or press (Ctrl+Shift+Nthen a pop-up window will appear. From there go to Installed>Templates >Other Project Types > Visual studio Solution.Select the Blank Solution and enter the name of solution HIMS and click OK.

    3. Let's create a ASP.NET MVC 5 project, open your HIMS solution and right click on the empty solution and go to Add New Project then click.

    4. From there go to Installed Visual C# > Web. Enter the name of the project (located below) HIMS.Patient.Registration then click OK.

    5. From the template window select the MVC template and then click OK.

    6. Congratulations! your ASP.NET MVC 5 project is created successfully with default MVC template you can run it and see the output in the browser.
    7. In the part - 2 we will create a SQL server database for creating entity framework model.
« Previous
Next »

1 comment:

Creating ASP.NET MVC 5 Application using Entity Framework 6 and Identity with CRUD Operations on visual studio 2015 Part-9

This is the part-9 of asp.net mvc 5 series using entity framework and identity from scratch.In this tutorial you will learn how to bind a...