DataSourceView::ExecuteDelete Method
Performs a delete operation on the list of data that the DataSourceView object represents.
Assembly: System.Web (in System.Web.dll)
Parameters
- keys
- Type: System.Collections::IDictionary
An IDictionary of object or row keys to be deleted by the ExecuteDelete operation.
- oldValues
- Type: System.Collections::IDictionary
An IDictionary of name/value pairs that represent data elements and their original values.
Return Value
Type: System::Int32The number of items that were deleted from the underlying data storage.
| Exception | Condition |
|---|---|
| NotSupportedException | The ExecuteDelete operation is not supported by the DataSourceView. |
Data-bound controls can determine whether the ExecuteDelete operation is supported by a data source control by retrieving the DataSourceView object using the DataSourceControl::GetView method, and checking the CanDelete property.
The keys parameter represents the object or row keys of the data to delete. For data sources that represent relational data, such as the SqlDataSource control, the keys parameter is a collection of database primary keys. In other scenarios, the keys parameter is a collection of name/value pairs and is used to filter a list of data. Any data matching a name/value pair is deleted.
Note |
|---|
The DataSourceView class's default implementation is to throw a NotSupportedException exception. If you extend the DataSourceView class, override the ExecuteDelete method if your class supports deletion from the underlying data storage. |
The following code example demonstrates how a class that extends the DataSourceView class can override the CanDelete property and the ExecuteDelete method. This code example is part of a larger example provided for the DataSourceView class.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note