EntityDataSource.EnableUpdate 属性

定义

获取或设置一个值,该值指示是否可以通过 EntityDataSource 控件修改对象。

public:
 property bool EnableUpdate { bool get(); void set(bool value); };
public bool EnableUpdate { get; set; }
member this.EnableUpdate : bool with get, set
Public Property EnableUpdate As Boolean

属性值

如果启用了自动更新操作,则为 true;否则为 false。 默认值是 false

实现

注解

Select 如果 EnableUpdate 属性设置为 ,则无法设置 true

false分配给 EnableUpdate 属性的值强制CanUpdate相关EntityDataSourceView对象的 属性返回 false。 当 EnableUpdate 属性设置为 false时, NotSupportedException 如果数据绑定控件调用 ExecuteUpdate 上的 方法, EntityDataSourceView则会引发 。

EnableUpdate 属性设置为 true 不保证可更新性。

如果不符合任何可更新性条件,并且 属性 EnableUpdate 设置为 true,则会 EntityDataSource 引发异常。

适用于