DataManagerImplDelete Method (String, String) |
Delete record from table
Namespace:
Unvired.Kernel.UWP.Database
Assembly:
Unvired.Kernel.UWP (in Unvired.Kernel.UWP.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic int Delete(
string tableName,
string whereClause = ""
)
Public Function Delete (
tableName As String,
Optional whereClause As String = ""
) As Integer
public:
int Delete(
String^ tableName,
String^ whereClause = L""
)
member Delete :
tableName : string *
?whereClause : string
(* Defaults:
let _whereClause = defaultArg whereClause ""
*)
-> int
Parameters
- tableName
- Type: SystemString
Table name - whereClause (Optional)
- Type: SystemString
Where clause for deletion
Return Value
Type:
Int32No of records deleted
See Also