ScaffoldColumnAttribute(Boolean) Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of ScaffoldColumnAttribute using the Scaffold property.
public:
ScaffoldColumnAttribute(bool scaffold);
public ScaffoldColumnAttribute (bool scaffold);
new System.ComponentModel.DataAnnotations.ScaffoldColumnAttribute : bool -> System.ComponentModel.DataAnnotations.ScaffoldColumnAttribute
Public Sub New (scaffold As Boolean)
Parameters
- scaffold
- Boolean
The value that specifies whether scaffolding is enabled.
Remarks
You can set scaffold
to true
for the entire data model to expose all data columns in the database for CRUD (Create, Read, Update and Delete) operations by setting scaffold
to true
in the Global.asax file or expose individual data columns in a data table to CRUD operations by setting scaffold
to true
in the partial class.