Sunday, August 23, 2015

The Entity Framework's Code First Approach in ASP.NET MVC

Code first 


Code First enables you to describe a model by using C# or Visual Basic .NET classes. Code First is a new development methodology available beginning with the Entity Framework 4.1. You can use Code First to generate a new database from a model, or map your model to an existing database. Read more here.

Entity Framework 


Entity Framework (EF) is an object-relational mapper that enables .NET developers to work with relational data using domain-specific objects. It eliminates the need for most of the data-access code that developers usually need to write.

MVC 4 


Successor of MVC3, ASP.NET MVC 4 is a framework for building scalable, standards-based web applications using well-established design patterns and the power of ASP.NET and the .NET Framework. 

MVC Scaffolding 

This is a Scaffolding package for ASP.NET which is installed via NuGet using ‘Install-Package MvcScaffolding’ command.

No comments:

Post a Comment

How to use Ajax.ActionLink and Html.ActionLink in MVC

Html.ActionLink   Html.ActionLink creates a hyperlink on a view page and the user clicks it to navigate to a new URL. It does not ...