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.

DbCommandBuilder::GetDeleteCommand Method ()

 

Gets the automatically generated DbCommand object required to perform deletions at the data source.

Namespace:   System.Data.Common
Assembly:  System.Data (in System.Data.dll)

public:
DbCommand^ GetDeleteCommand()

Return Value

Type: System.Data.Common::DbCommand^

The automatically generated DbCommand object required to perform deletions.

An application can use the GetDeleteCommand method for informational or troubleshooting purposes because it returns the DbCommand object to be executed.

You can also use GetDeleteCommand as the basis of a modified command. For example, you might call GetDeleteCommand and modify the command text, and then explicitly set that on the DbDataAdapter.

After the SQL statement is first generated, the application must explicitly call RefreshSchema if it changes the statement in any way. Otherwise, the GetDeleteCommand will still be using information from the previous statement, which might not be correct. The SQL statements are first generated either when the application calls Update or GetDeleteCommand.

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