ReaderModificationCommandBatch.AddCommand 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
AddCommand(IReadOnlyModificationCommand) |
在列表中给定位置ModificationCommands添加命令汇报命令文本。 |
AddCommand(ModificationCommand) |
将给定的插入/更新/删除 ModificationCommands 添加到批处理。 |
AddCommand(IReadOnlyModificationCommand)
在列表中给定位置ModificationCommands添加命令汇报命令文本。
public override bool AddCommand (Microsoft.EntityFrameworkCore.Update.IReadOnlyModificationCommand modificationCommand);
protected virtual void AddCommand (Microsoft.EntityFrameworkCore.Update.IReadOnlyModificationCommand modificationCommand);
override this.AddCommand : Microsoft.EntityFrameworkCore.Update.IReadOnlyModificationCommand -> bool
abstract member AddCommand : Microsoft.EntityFrameworkCore.Update.IReadOnlyModificationCommand -> unit
override this.AddCommand : Microsoft.EntityFrameworkCore.Update.IReadOnlyModificationCommand -> unit
Public Overrides Function AddCommand (modificationCommand As IReadOnlyModificationCommand) As Boolean
Protected Overridable Sub AddCommand (modificationCommand As IReadOnlyModificationCommand)
参数
- modificationCommand
- IReadOnlyModificationCommand
要添加的命令。
返回
true
如果已成功添加命令,则为 ; false
如果当前批处理中没有空间来添加命令,则必须将其添加到新批处理。
适用于
AddCommand(ModificationCommand)
将给定的插入/更新/删除 ModificationCommands 添加到批处理。
public override bool AddCommand (Microsoft.EntityFrameworkCore.Update.ModificationCommand modificationCommand);
override this.AddCommand : Microsoft.EntityFrameworkCore.Update.ModificationCommand -> bool
Public Overrides Function AddCommand (modificationCommand As ModificationCommand) As Boolean
参数
- modificationCommand
- ModificationCommand
要添加的命令。
返回
true
如果已成功添加命令,则为 ; false
如果当前批处理中没有空间来添加命令,则必须将其添加到新批处理。