System.Data.Common.DbCommandBuilder.GetDeleteCommand C# (CSharp) Méthode

GetDeleteCommand() public méthode

public GetDeleteCommand ( ) : DbCommand
Résultat DbCommand
        public DbCommand GetDeleteCommand()
        {
            return GetDeleteCommand(null, false);
        }
        public DbCommand GetDeleteCommand(bool useColumnsForParameterNames)

Same methods

DbCommandBuilder::GetDeleteCommand ( DataRow dataRow, bool useColumnsForParameterNames ) : DbCommand
DbCommandBuilder::GetDeleteCommand ( bool useColumnsForParameterNames ) : DbCommand

Usage Example

Exemple #1
0
 System.Data.Common.DbCommand CreateDeleteCommand()
 {
     if (_commandBuilder == null)
     {
         CreateDataAdapter();
     }
     return(_commandBuilder.GetDeleteCommand(true));
 }
All Usage Examples Of System.Data.Common.DbCommandBuilder::GetDeleteCommand