Click or drag to resize
SqlDialectUpdate Method
Creates a update SQL.

Namespace: LiteRepository
Assembly: LiteRepository (in LiteRepository.dll) Version: 2.0.4
Syntax
C#
public 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: String
A string with a update query.
See Also