GetDeleteCommand() method

Gets the automatically generated ULCommand object required to perform deletions on the database.

Syntax
Visual Basic

Public Function GetDeleteCommand() As ULCommand
C#

public ULCommand GetDeleteCommand();
Return value

The automatically generated ULCommand object required to perform deletions.

Remarks

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

See also