Click to Rate and Give Feedback
Collapse All/Expand All Collapse All
This page is specific to
Microsoft Visual Studio 2008/.NET Framework 3.5

Other versions are also available for the following:
.NET Framework Class Library
ScaffoldTableAttribute Class

Updated: July 2008

Specifies whether a class or data table uses scaffolding.

Namespace:  System.ComponentModel.DataAnnotations
Assembly:  System.ComponentModel.DataAnnotations (in System.ComponentModel.DataAnnotations.dll)
Visual Basic (Declaration)
<AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple := False)> _
Public Class ScaffoldTableAttribute _
    Inherits Attribute
Visual Basic (Usage)
Dim instance As ScaffoldTableAttribute
C#
[AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple = false)]
public class ScaffoldTableAttribute : Attribute
Visual C++
[AttributeUsageAttribute(AttributeTargets::Class, AllowMultiple = false)]
public ref class ScaffoldTableAttribute : public Attribute
JScript
public class ScaffoldTableAttribute extends Attribute

Scaffolding is the mechanism for generating web page templates based on database schemas. ASP.NET Dynamic Data uses scaffolding to generate Web-based UI that lets a user to view and update a database. This class uses the Scaffold property to enable scaffolding of individual tables in a Dynamic Data Web Site. Scaffolding enhances the ASP.NET page framework by dynamically displaying pages based on the data model with no physical pages required.

Scaffolding provides the following:

  • Minimal or no code to create a data-driven Web application.

  • Quick development time.

  • Pages that are fully functional, including display, insert, edit, delete, sorting, and paging functionalities.

  • Built-in data validation based on the database schema.

  • Filters that are created for each foreign key or Boolean fields.

This class can be used to enable or disable scaffolding of data tables in a data model by applying this attribute to the partial class that represents the table.

The following code example hides the ErrorLog Table in AdventureWorksLT database by applying the scaffold attribute to the ErrorLog partial class that represents the ErrorLog table. The scaffold property is set to false.

Visual Basic
<MetadataType(GetType(ErrorLogMetada))> _ 
<ScaffoldTable(False)> _ 
Public Partial Class ErrorLog 

End Class 




Public Class ErrorLogMetada 


End Class 

C#
[[MetadataType (typeof(ErrorLogMetada))]
[ScaffoldTable(false)]
public partial class ErrorLog
{

}


public class ErrorLogMetada
{
    

}
Visual Basic
<MetadataType(GetType(ErrorLogMetada))> _ 
<ScaffoldTable(False)> 
Public Partial Class ErrorLog 
    
End Class 

Public Class ErrorLogMetada 
    
    
End Class 
 [C#]
[MetadataType (typeof(ErrorLogMetada))]
[ScaffoldTable(false)]
public partial class ErrorLog
{
   
}

public class ErrorLogMetada
{


}

To compile the example code, you need the following:

  • Visual Studio 2008 Service Pack 1 or Visual Developer 2008 Express Edition Service Pack 1.

  • The AdventureWorksLT sample database. For information about how to download and install the SQL Server sample database, see Microsoft SQL Server Product Samples: Database on the CodePlex site. Make sure that you install the correct version of the sample database for the version of SQL Server that you are running (SQL Server 2005 or SQL Server 2008).

  • A Dynamic Data Web site. This enables you to create a data context for the database and the class that contains the data field to customize and the methods to override. In addition, it creates the environment in which to use the page described before. For more information, see Walkthrough: Creating a New ASP.NET Dynamic Data Web Site Using Scaffolding.

System..::.Object
  System..::.Attribute
    System.ComponentModel.DataAnnotations..::.ScaffoldTableAttribute
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5 SP1

Date

History

Reason

July 2008

Added topic for new class.

SP1 feature change.

Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2010 Microsoft Corporation. All rights reserved. Terms of Use | Trademarks | Privacy Statement
Page view tracker