DbCommandBuilder.InitializeCommand(DbCommand) Method

Definition

Resets the CommandTimeout, Transaction, CommandType, and UpdateRowSource properties on the DbCommand.

C#
protected virtual System.Data.Common.DbCommand InitializeCommand(System.Data.Common.DbCommand? command);
C#
protected virtual System.Data.Common.DbCommand InitializeCommand(System.Data.Common.DbCommand command);

Parameters

command
DbCommand

The DbCommand to be used by the command builder for the corresponding insert, update, or delete command.

Returns

A DbCommand instance to use for each insert, update, or delete operation. Passing a null value allows the InitializeCommand(DbCommand) method to create a DbCommand object based on the Select command associated with the DbCommandBuilder.

Remarks

This method is intended for use by provider writers building a custom command builder.

Applies to

Product Versions
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1

See also