Creates a update SQL.
Namespace: LiteRepositoryAssembly: LiteRepository (in LiteRepository.dll) Version: 2.0.4
Syntaxpublic abstract string Update(
string tableName,
string set,
string where
)
Parameters
- tableName
- Type: SystemString
Name of the table. - set
- Type: SystemString
A list of set expressions - where
- Type: SystemString
Where conditions. For example: column1 = 'abc' and column2 < 2.
Return Value
Type:
StringA string with a update query.
See Also