DataToSQLValuesT(ListT, Boolean) Method

Converts a list of values to a value expression for SQL.

Definition

Namespace: Aliquo.Core
Assembly: Aliquo.Core (in Aliquo.Core.dll) Version: 5.0.9179.22651
C#
public static string ToSQLValues<T>(
	List<T> values,
	bool skipDuplicates
)

Parameters

values  ListT
List of values to convert.
skipDuplicates  Boolean
Indicates whether to Ignore duplicate values.

Type Parameters

T
Object type.

Return Value

String
String with the expression of values separated by comma.

See Also