IReminderTable.RemoveRow 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
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。
傳回
如果具有 grainId
且 reminderName
已存在且已成功移除的資料列,則為 true,否則為 false
適用於
RemoveRow(GrainReference, String, String)
從資料表中移除資料列。
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
傳回
如果具有 grainRef
且 reminderName
已存在且已成功移除的資料列,則為 true,否則為 false