Click or drag to resize
SqlServerDialectInsert Method
Creates a insert SQL.

Namespace: LiteRepository.SqlServer
Assembly: LiteRepository (in LiteRepository.dll) Version: 2.0.4
Syntax
C#
public override string Insert(
	string tableName,
	string fields,
	string values,
	bool isIdentity
)

Parameters

tableName
Type: SystemString
Name of the table.
fields
Type: SystemString
Comma-separated list of fields.
values
Type: SystemString
Comma-separated list of values.
isIdentity
Type: SystemBoolean
Determines whether a table is a table with identity key.

Return Value

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