Home > Store

ASP.NET Dynamic Data Unleashed

Register your product to gain access to bonus material or receive a coupon.

ASP.NET Dynamic Data Unleashed

eBook (Watermarked)

  • Sorry, this book is no longer in print.
  • Includes EPUB and PDF
  • About eBook Formats
  • This eBook includes the following formats, accessible from your Account page after purchase:

    ePub EPUB The open industry format known for its reflowable content and usability on supported mobile devices.

    Adobe Reader PDF The popular standard, used most often with the free Adobe® Reader® software.

    This eBook requires no passwords or activation to read. We customize your eBook by discreetly watermarking it with your name, making it uniquely yours.

Not for Sale

Description

  • Copyright 2011
  • Dimensions: 7" x 9-1/8"
  • Edition: 1st
  • eBook (Watermarked)
  • ISBN-10: 0-13-278358-4
  • ISBN-13: 978-0-13-278358-3

 Using Dynamic Data, ASP.NET developers can create powerful, datadriven sites with amazing speed and efficiency, eliminating massive amounts of manual coding. ASP.NET Dynamic Data Unleashed is the first complete, practical guide to Dynamic Data for every experienced ASP.NET developer.

The author thoroughly demystifies Dynamic Data, helping developers understand exactly what they can do with the framework and make it more accessible than ever before. He provides tested code to solve a wide variety of problems, explains how and why that code works, and identifies key tradeoffs and alternatives.

Packed with breakthrough techniques for improving developer productivity, this book combines a hands-on tutorial, “drill-down” explanations of advanced techniques, and real-world development scenarios.

Detailed information on how to…

  • Use Dynamic Data components to overcome common real-world user interface development challenges
  •   Understand how ASP.NET Dynamic Data builds on strengths of WebForms, Entity Framework, and LINQ
  •   Develop simple custom templates to dramatically reduce code duplication
  •   Generalize templates to leverage metadata and generate user interfaces dynamically
  •   Create web pages for data entry, data filtering, and diverse views of data
  •   Use Data Annotations to implement powerful validation logic
  •   Write simple, yet effective automated tests to systematically verify the business logic
  •   Create complex interaction rules that aren’t limited by single entity objects or types
  •   Optimize I/O-bound business logic by implementing it with T-SQL constraints, stored procedures, and triggers
  •   Implement role-based security with dynamic UI trimming
  •   Generate entire data-driven web applications, complete with CRUD pages, complex business rules, integrated navigation, and security
  •   Extend Dynamic Data to support advanced scenarios
  •   Decide when Dynamic Data should be used instead of or together with ASP.NET MVC

Sample Content

Table of Contents

Preface     xv

PART I Dynamic Data Fundamentals

1 Getting Started     3

Creating a New Dynamic Data Application     4

Creating a Data Model     6

Metadata in Entity Framework and Dynamic Data      12

Field Templates and Dynamic Controls      13

Data Annotations     17

Entity Templates      18

Grid Columns and Dynamic Fields     22

Filter Templates     25

Page Templates and URL Routing     29

Summary      35

2 Entity Framework      37

Understanding Entity Model     38

Creating Entity Model      38

ObjectContext and Simple Queries     43

Associations      43

Querying Across Associations     46

Modifying and Saving Entities      46

LINQ to Entities      47

Query Execution      47

Object Identity     48

Lazy and Eager Loading      49

Projections      49

Sorting     50

Grouping     51

Joins      51

Composing Queries      52

SQL Translation      53

Compiled Queries      55

Extension Methods     57

Entity Lifecycle     60

Tracking Changes      60

Optimistic Concurrency Control      61

Transactions      64

Read-Only ObjectContext      65

Entity Model in Depth     66

Mapping Entity Type to Multiple Tables      71

Entity Type Inheritance     72

Inheritance Mapping     73

Stored Procedures     74

Insert, Update, and Delete Stored Procedures     78

Summary      82

3 Field Templates      85

Read-Only Templates      86

Field Value Display Format     87

Edit and Insert Mode Templates     89

Field Value Edit Format      93

Changing Existing Field Template     93

Data Binding      96

Creating a New Field Template     99

Field Template Lookup Rules     104

Data Annotations      104

Type Names     104

Type Aliases     105

Type Fallback      105

Control Mode      106

Mode Fallback     106

Navigation Columns      107

Field Template Lookup Algorithm      108

Built-in Field Templates      111

Boolean      111

Boolean_Edit      111

Children      111

Children_Insert     111

DateTime      112

DateTime_Edit      112

Decimal_Edit      112

EmailAddress      112

Enumeration      112

Enumeration Edit      113

ForeignKey      114

ForeignKey_Edit      114

Integer_Edit     114

ManyToMany      114

ManyToMany_Edit      115

MultilineText_Edit      115

Text      115

Text_Edit      116

Url      116

Summary      116

4 Entity Templates      117

Creating an Entity Template     120

Composite Entity Templates     122

Generic Entity Templates     123

Dynamic Entity Templates      124

Edit and Insert Entity Templates      129

Entity Template Lookup Rules     131

Template Name     131

Template Mode      132

Entity Template Lookup Algorithm      133

Built-in Entity Templates      134

Summary      135

5 Filter Templates      137

Filtering with LINQ     138

Creating a Filter Template      140

GetQueryable Method      143

OnFilterChanged Method      143

DefaultValue Property      143

Dynamic LINQ Queries     143

Building Search Pages with Filter Templates      145

QueryableFilterRepeater Control     148

Filter Template Lookup Rules      150

Built-in Filter Templates     151

Boolean      151

Enumeration      151

ForeignKey      151

Summary     151

6 Page Templates      153

Built-in Page Templates     154

Details Page Template     155

Edit Page Template      159

List Page Template      163

Insert Page Template     169

Creating a New Page Template      172

Custom Page Templates      174

URL Routing     180

Action Route Parameter     180

Table Route Parameter      180

URL Parameters Versus Query Parameters      181

Dynamic Hyperlinks     182

Route Evaluation and Constraints      183

ViewName Route Parameter     185

Page Template Lookup Rules      185

Summary      186

7 Metadata API      189

Metadata Classes at a Glance     189

Metadata Explorer     191

The MetaModel Class     192

Data Model Registration     192

Accessing MetaTable Objects     193

Global Model Registration     195

Scaffolding Support      196

The MetaTable Class      196

Entity Definition     196

Data Annotations      198

Data Access Support      201

Presentation Logic Support      202

Security Support     203

The MetaColumn Class      203

Property Definition     204

Property Kind     206

Data Annotations      207

The MetaForeignKeyColumn Class      211

Presentation Logic      211

The MetaChildrenColumn Class     213

Summary      214

PART II Dynamic Data in Real-World Applications

8 Implementing Entity Validation     217

Validation Framework      217

Validation Error Messages     219

Validation in Entity Framework     221

Customizing Entity Framework Code Generation     227

Replacing Built-in Code Generator with Text Template     227

Customizing Text Template to Change Context Base Class     228

Customizing Text Template to Generate Static Constructors      229

Automated Testing      230

Creating a Unit Test     231

Test Isolation     234

Testing Validation of Different Properties     235

Integration Testing Versus Unit Testing     237

Declarative Validation     238

RequiredAttribute      238

RangeAttribute     239

StringLengthAttribute     241

RegularExpressionAttribute      242

EnumDataTypeAttribute     244

DataTypeAttribute      245

Imperative Validation      245

CustomValidationAttribute      245

Validating Multiple Rules      250

Reporting Multiple Errors     252

Validating Entity State Changes      256

Accessing Original Property Values with ObjectStateManager     256

Accessing Original Property Values in Validation Methods      257

Handling DBNull Values      259

Summary      261

9 Implementing Business Logic     263

Entity Design     264

Measure Impact of Inheritance on Query Performance      264

Keep the Conceptual and Storage Models as Close as Possible     268

Default Property Values      269

Property Interaction Rules      272

OnPropertyChanging Partial Methods     273

ISavableObject Interface      273

Entity Interaction Rules      275

Implementing Entity Interaction Rules in BeforeSave Methods      276

Implementing Entity Interaction Rules as Entity Methods     277

Implementing Entity Interaction Rules as Context Methods      278

Validation Rules      280

Validation Rule Design      281

Validation of Related Entities     287

Entity Deletion Rules     289

Reusing Entity Validation in Business Rule Methods     290

Saving Changes     292

Managing Transactions     293

Invoking Business Rules in Web Applications      294

Error Handling     296

Business Rules in the Database     298

Integrating Database Validation in Dynamic Data Applications      299

Implementing Validation Rules in Triggers      304

Implementing Business Rules in Stored Procedures      306

Summary      308

10 Building Custom Forms      309

Multimode Entity Templates      310

Custom Templates      310

Dynamic Templates      312

Creating Dynamic Label Control      315

Extending DynamicControl      319

Configuring Field Templates     321

Specifying a Field Template Explicitly      321

Configuring Field Templates Declaratively      322

Configuring Field Templates Programmatically      323

Creating Custom Field Templates     324

Implementing Interaction Between Field Templates      327

Accessing Initial Field Values of Other Columns     330

Accessing Modified Field Values of Other Columns     331

Initial Implementation of the Region_Edit Field Template     332

Improving Encapsulation of Field Templates     334

FieldValue Property     336

FieldValueChanged Event     337

AutoPostBack Property      337

Extending Existing Field Templates      337

Using Entity Templates to Control Field Templates      341

Extending DynamicControl (Again)      343

Taking Advantage of the UnleashedControl in Entity Templates     345

Summary      347

11 Building Dynamic Forms      349

Basic Form Layout     350

Configuring Appearance of Labels      352

Prompt Annotation      354

Description Annotation     356

Configuring Field Templates     357

Making Properties Read-Only     357

Overriding Default Field Templates      359

Configuring Appearance of Values     360

Enum Properties and Enumeration Templates     361

Extending the Enumeration Field Templates     362

Custom Data Types and UI Hints     368

Specifying Field Template Parameters      370

Extending Dynamic Data to Support Control Parameters      372

Field Template Interaction in Dynamic Forms      378

Fixing the FindOtherFieldTemplate Method      381

Creating Additional Dynamic Entity Templates      383

Extending Metadata to Support Entity UI Hints      384

Extending Page Templates to Support EntityUIHintAttribute     386

UnleashedEntity Control     386

Building a Dynamic Two-Column Entity Template      388

Summary      393

12 Building Custom Search Pages     395

Displaying Information from Related Entities      396

Column Sorting Across Related Entities      400

Building Custom Search Pages      401

Overcoming Limitations of Dynamic Filters      403

Using Replacement Filter Controls      405

Filtering Based on Related Entities      407

Initializing Nested Filter Control      409

Implementing Query Logic      411

Using the Parent Filter Template     419

Summary      420

13 Building Dynamic List Pages     421

Extending Filter Lookup Rules     422

Extending the FilterFactory Class     423

Extending the MetaTable Class      427

Extending the MetaModel Class      429

Building Dynamic UI with Custom Properties      432

Implementing Support for Custom Properties     433

Model Providers     434

Sorting of Custom Properties     446

Specifying Sort Expression for Custom Properties in Entity Model     446

Extending Dynamic Data to Support Sort Expression Metadata      447

Generating Metadata Attributes      450

Summary      452

14 Implementing Security     455

Table Scaffolding      456

Route Constraints      457

Web.Config Authorization Rules     458

Limitations of Configuration-Based Rules     461

Metadata Security API     462

Modifying Dynamic Templates to Support the Security API     464

Implementing Row-Level Security     472

Security Annotations      476

AuthorizationAttribute      477

CustomQueryAttribute      487

Summary      493

Index      495

Updates

Submit Errata

More Information

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020