Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

EntityDataSource::Inserted Event

 

Occurs after a new object is created at the data source.

Namespace:   System.Web.UI.WebControls
Assembly:  System.Web.Entity (in System.Web.Entity.dll)

public:
event EventHandler<EntityDataSourceChangedEventArgs^>^ Inserted {
	void add(EventHandler<EntityDataSourceChangedEventArgs^>^ value);
	void remove(EventHandler<EntityDataSourceChangedEventArgs^>^ value);
}

The Inserted event is raised when the added object is created in the data source or if an error has occurred when the object data is persisted to the data source. The Entity property of the EntityDataSourceChangedEventArgs object is used to access the added object.

The properties of this object contain values that are returned from the data source, including any data source-generated values.

If an error occurs when an object is persisted to the data source, the Inserted event is raised and the Exception property of the EntityDataSourceChangedEventArgs object is set to the returned Exception. If you handle the exception in the Inserted event handler, set the ExceptionHandled property to true. This prevents the exception from being raised again. When you specify a value of false for the ExceptionHandled property, the EntityDataSource re-raises the exception.

.NET Framework
Available since 3.5
Return to top
Show:
© 2017 Microsoft