Click or drag to resize
SqlDialectDelete Method
Creates a delete SQL.

Namespace: LiteRepository
Assembly: LiteRepository (in LiteRepository.dll) Version: 2.0.4
Syntax
C#
public abstract string Delete(
	string tableName,
	string where
)

Parameters

tableName
Type: SystemString
Name of the table.
where
Type: SystemString
Where conditions. For example: column1 = 'abc' and column2 < 2.

Return Value

Type: String
A string with a delete query.
See Also