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

 

Occurs before an ObjectContext is disposed of.

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

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

Handle this event to prevent the ObjectContext used by the EntityDataSource control from being disposed of. Do this when you want to use a single ObjectContext instance in your page with several controls or instances of the EntityDataSource control. To prevent the ObjectContext from being disposed of, set the Cancel property of the EntityDataSourceContextDisposingEventArgs object to true. For more information, see Object Context Life-Cycle Management (EntityDataSource). For more information about the object context, see Identity Resolution, State Management, and Change Tracking.

To keep an existing ObjectContext instance member for future reference cancel the ContextCreated event as shown by the following code.

protected void EntityDataSource2_ContextDisposing(object sender, 
    EntityDataSourceContextDisposingEventArgs e)
{
    e.Cancel = true;
}

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