DataSourceCommandCreateDeleteRowCommand Method |
Creates a delete row command.
Namespace:
Aloe.SystemFrameworks.Domain.DataAccess
Assembly:
Aloe.SystemFrameworks.Domain (in Aloe.SystemFrameworks.Domain.dll) Version: 20.1.3.5
Syntaxpublic static DataSourceCommand CreateDeleteRowCommand(
string tableName,
Guid id,
string transactionName = ""
)
Public Shared Function CreateDeleteRowCommand (
tableName As String,
id As Guid,
Optional transactionName As String = ""
) As DataSourceCommand
public:
static DataSourceCommand^ CreateDeleteRowCommand(
String^ tableName,
Guid^ id,
String^ transactionName = L""
)
static member CreateDeleteRowCommand :
tableName : string *
id : Guid *
?transactionName : string
(* Defaults:
let _transactionName = defaultArg transactionName ""
*)
-> DataSourceCommand
Parameters
- tableName
- Type: SystemString
Name of the table. - id
- Type: SystemGuid
The identifier. - transactionName (Optional)
- Type: SystemString
Name of the transaction.
Return Value
Type:
DataSourceCommandThe delete row command.
See Also