LinqDataSourceDisposeEventArgs.ObjectInstance Property

Definition

Gets the data context object to dispose.

public:
 property System::Object ^ ObjectInstance { System::Object ^ get(); };
public object ObjectInstance { get; }
member this.ObjectInstance : obj
Public ReadOnly Property ObjectInstance As Object

Property Value

An object that represents the data context.

Remarks

The ObjectInstance property contains the data context object that the LinqDataSource control uses for data operations. You can use the ObjectInstance property to retrieve the data context object if you want to examine the object before it is disposed.

When the LinqDataSource control interacts with a database, the ObjectInstance property is set to the DataContext object that represents the database. When the LinqDataSource control interacts with an in-memory data collection, the ObjectInstance property is set to the object that contains the data collection.

Applies to