Entries categorized 'ASP.NET Dynamic Data' ↓

ASP.NET Dynamic Data Resources

Podcasts/Webcasts ASP.NET Podcast Show #136 - Rachel Appel (hey, that's me!) on Dynamic Data: http://tinyurl.com/dlr6oy ASP.NET Podcast Show #127 – Host Wally McClure talks about Dynamic Data: http://tinyurl.com/6o7s64 MSDN geekSpeak with Glen Gordon. ASP.NET Dynamic Data episode with guest Rachel Appel...

ASP.NET Dynamic Data Resources →

ASP.NET Dynamic Data Routing

ASP.NET Dynamic Data uses routing to match http requests with the appropriate data, actions and views to produce the output (read only, read only details, edit and insert pages) that is expected for each table in the model. The routing system found in Dynamic Data is based on the ASP.NET routing system...

ASP.NET Dynamic Data Routing →

Custom Validation in ASP.NET Dynamic Data using Attributes

You have two choices for validation in ASP.NET Dynamic Data: Annotating the data model with attributes or extending the data model using partial methods (see here ). We’ll take a look at annotating the data model to provide validation for Dynamic Data applications. Attribute Based Validation: Dynamic...

Custom Validation in ASP.NET Dynamic Data using Attributes →

Custom Validation and Business Logic in ASP.NET Dynamic Data using Partial Methods

You have two choices for validation in ASP.NET Dynamic Data: Annotating the data model with attributes or extending the data model using partial methods. We’ll take a look at using the OnChanging partial methods from the data model to provide custom validation for Dynamic Data applications. Validation...

Custom Validation and Business Logic in ASP.NET Dynamic Data using Partial Methods →

Custom Field Templates in ASP.NET Dynamic Data

Field Template Basics ASP.NET Dynamic Data provides field templates by employing customized user controls (.ascx files) located in the \DynamicData\FieldTemplates directory and they contain the UI definitions and basic validation for each data type in your model. The controls housed inside the field...

Custom Field Templates in ASP.NET Dynamic Data →

ASP.NET Dynamic Data geekSpeak Q&A and Follow Up

Below are a list of questions directly from my geekSpeak session earlier this week. Q: How do you hide a class from the scaffolding? A: Use the ScaffoldTableAttribute on the class in your data model you want to hide. [ ScaffoldTable ( false )] public partial class Products {} Q: If you are using regex...

ASP.NET Dynamic Data geekSpeak Q&A and Follow Up →

Common ASP.NET Dynamic Data Error

A few folks trying out Dynamic Data have run across this error and emailed me about it: “There are no accessible tables. Make sure that at least one data model is registered in Global.asax and scaffolding is enabled or implement custom pages” It means that you forgot to register your data model (LINQ...

Common ASP.NET Dynamic Data Error →

What is ASP.NET Dynamic Data

ASP.NET Dynamic Data is a new web application framework from Microsoft. Dynamic Data allows developers to quickly build web sites. Dynamic Data takes care of coding the daily grind CRUD operations including validation, data relationship management, data type management and UI display templates. All this...

What is ASP.NET Dynamic Data →

MSDN Webcast: geekSpeak: ASP.NET Dynamic Data

On October 1st at 3:00 PM EST I will be doing a geekSpeak with Microsoft Developer Evangelists Glen Gordon and Linsday Rutter Event Overview The geekSpeak webcast series brings you industry experts in a "talk-radio" format hosted by developer evangelists from Microsoft. These experts share...

MSDN Webcast: geekSpeak: ASP.NET Dynamic Data →

Introduction to ASP.NET Dynamic Data Presentation

The PowerPoint deck is here for download. This is the recent talk I’ve been doing at CodeStock, Code Camps and user groups lately.