With the rate of changes/ additions of features in the .Net framework, many of very good features don't get the deserved attention.  Especially on the ASP.NET front, there have been many such features haven't caught the eye of developer. Dynamic data which was introduced with ASP.Net 3.5 (SP 1) is one of such cool new addition in the archery of ASP.Net. 


Precisely ASP.NET dynamic data provides a framework which enables quick building of functional data driven application that are based on Microsoft ORM i.e. LINQ TOSQL or Entity framework data model. It has added smart validation and ability to change the display with templates to DetailsView, FormView, GridView, and ListView controls. As per Microsoft, the dynamic data framework enables major usability and RAD development changes to work with data model. The LINQTOSQL or EF can be registered with dynamic data to result into a fully functional web site. It supports all CRUD operations. We will explore dynamic data website with .NET framework 4.0.

Description

Let's start a small demonstration (employing Entity Framework) step by step. 
Environment: VS 2010, SQL Server 2008 with "AdventureWorks" database 

Read More....