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::Updating Event

 

Occurs before changes to an object are persisted to the data source.

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

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

The Updating event is raised before changes to the properties of an object are persisted to the data source. The Updating event enables you to modify or verify changes to the object, supply a different object, or cancel the operation before the changes are persisted. You can access the modified object from the Entity property of the EntityDataSourceChangingEventArgs object. If supplying a different object, the user is responsible for setting the correct entity type in the Entity property.

Handle the Updating event if you must modify the ObjectStateEntry for the object to set different original values for concurrency control. For more information, see Saving Changes and Managing Concurrency.

To stop the changes from being persisted, set the Cancel property of the EntityDataSourceChangingEventArgs object to true.

If an error occurs when instantiating an object or modifying properties, the Updating event is raised and the Exception property of the EntityDataSourceChangingEventArgs object is set to the returned Exception.

When you handle the exception in the Updating 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