共用方式為


IReminderTable.RemoveRow 方法

定義

多載

RemoveRow(GrainId, String, String)

從資料表中移除資料列。

RemoveRow(GrainReference, String, String)

從資料表中移除資料列。

RemoveRow(GrainId, String, String)

從資料表中移除資料列。

public System.Threading.Tasks.Task<bool> RemoveRow (Orleans.Runtime.GrainId grainId, string reminderName, string eTag);
abstract member RemoveRow : Orleans.Runtime.GrainId * string * string -> System.Threading.Tasks.Task<bool>
Public Function RemoveRow (grainId As GrainId, reminderName As String, eTag As String) As Task(Of Boolean)

參數

grainId
GrainId

粒紋識別碼。

reminderName
String

提醒名稱。

eTag
String

ETag。

傳回

如果具有 grainIdreminderName 已存在且已成功移除的資料列,則為 true,否則為 false

適用於

RemoveRow(GrainReference, String, String)

來源:
IReminderTable.cs

從資料表中移除資料列。

public System.Threading.Tasks.Task<bool> RemoveRow (Orleans.Runtime.GrainReference grainRef, string reminderName, string eTag);
abstract member RemoveRow : Orleans.Runtime.GrainReference * string * string -> System.Threading.Tasks.Task<bool>
Public Function RemoveRow (grainRef As GrainReference, reminderName As String, eTag As String) As Task(Of Boolean)

參數

grainRef
GrainReference
reminderName
String
eTag
String

傳回

如果具有 grainRefreminderName 已存在且已成功移除的資料列,則為 true,否則為 false

適用於