views:

349

answers:

5

What is .net dynamic data and why would I use it?

+6  A: 

From ScottGu's Blog a great article on how to use Dynamic Data.

One of the cool new features is something we call "ASP.NET Dynamic Data Support". In a nutshell this enables you to really quickly build data driven web-sites that work against a LINQ to SQL (and in the future LINQ to Entities) object model - and optionally allows you to-do this without having to build any pages manually.

See this screencast. It is very enlightening.

From more official ASP.NET Dynamic Data site:

ASP.NET Dynamic Data provides a framework that enables you to quickly build a functional data-driven application, based on a LINQ to SQL or Entity Framework data model. It also adds great flexibility and functionality to the DetailsView, FormView, GridView, and ListView controls in the form of smart validation and the ability to easily change the display of these controls using templates.

smink
A: 

It would have helped if you'd given more context, but I suspect you mean ASP.NET Dynamic Data. Hopefully the site will answer your question.

Jon Skeet
+1  A: 

ASP.NET DDS is the drag and drop change here and there and you have a data Driven web application ready to go kind'a thing.

Matt Berseth has a few good posts about this

balexandre
+1  A: 

This is a great tool for cranking out a simple app very quickly. Useful for prototyping or very simple websites, or temporary "bridge" sites to get users up and running while the real app is written.

This is not for building robust, scalable enterprise app's with complex UI's, a lot of business logic, or non-CRUD features.

It's one tool for your tool belt, not a universal tool.

DOK
+3  A: 

It's an addon that integrates into existing ASP.NET controls such as GridView. It looks at the model exposed by LINQ2SQL or EF to provide a richer editing interface. Use it for simple CRUD apps.

Cristian Libardo