EntityDataSource.EnableInsert Property
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.
Gets or sets a value that indicates whether objects can be added through the EntityDataSource control.
public:
property bool EnableInsert { bool get(); void set(bool value); };
public bool EnableInsert { get; set; }
member this.EnableInsert : bool with get, set
Public Property EnableInsert As Boolean
Property Value
true
if automatic insert operations are enabled; otherwise, false
. The default value is false
.
Implements
Remarks
Select cannot be set if the EnableInsert property is set to true
.
A false
value assigned to the EnableInsert property on the EntityDataSource forces the CanInsert property of the related EntityDataSourceView object to return false
. When the EnableInsert property is set to false
, a NotSupportedException is raised if the data-bound control calls the ExecuteInsert method on the EntityDataSourceView.
If any of the conditions for updatability are not met and the EnableInsert property is set to true
, the EntityDataSource raises an exception.