EntityDataSource.Inserted 事件

定义

在数据源中创建新对象之后发生。

public:
 event EventHandler<System::Web::UI::WebControls::EntityDataSourceChangedEventArgs ^> ^ Inserted;
public event EventHandler<System.Web.UI.WebControls.EntityDataSourceChangedEventArgs> Inserted;
member this.Inserted : EventHandler<System.Web.UI.WebControls.EntityDataSourceChangedEventArgs> 
Public Custom Event Inserted As EventHandler(Of EntityDataSourceChangedEventArgs) 

事件类型

注解

Inserted 数据源中创建添加的对象时,或者在将对象数据保存到数据源时发生错误时,将引发 事件。 对象的 Entity 属性 EntityDataSourceChangedEventArgs 用于访问添加的对象。

此对象的属性包含从数据源返回的值,包括任何数据源生成的值。

如果在将对象保存到数据源时发生错误,则会 Inserted 引发 事件,并将 Exception 对象的 EntityDataSourceChangedEventArgs 属性设置为返回 Exception的 。 如果在事件处理程序中 Inserted 处理异常,请将 ExceptionHandled 属性设置为 true。 这可以防止再次引发异常。 为 属性指定 值falseExceptionHandled时,会EntityDataSource重新引发异常。

适用于