Sql.ColumnNames method (1 of 6)

Returns a comma-delimited list of column names for a DTO of the specified type.

public static Sql ColumnNames(Type type)

See Also


Sql.ColumnNames method (2 of 6)

Returns a comma-delimited list of column names for a DTO of the specified type.

public static Sql ColumnNames(Type type, string tableName)

Remarks

This overload is used with SELECT statements when the table name (or alias) needs to be specified with each column name. If a tuple of DTOs is specified, a NULL column will separate the DTOs.

See Also


Sql.ColumnNames method (3 of 6)

Returns a comma-delimited list of column names for a DTO of the specified type.

public static Sql ColumnNames(Type type, params string[] tableNames)

Remarks

This overload is used with SELECT statements when the table name (or alias) needs to be specified with each column name. If a tuple of DTOs is specified, a NULL column will separate the DTOs.

See Also


Sql.ColumnNames<T> method (4 of 6)

Returns a comma-delimited list of column names for a DTO of the specified type.

public static Sql ColumnNames<T>()

See Also


Sql.ColumnNames<T> method (5 of 6)

Returns a comma-delimited list of column names for a DTO of the specified type.

public static Sql ColumnNames<T>(string tableName)

Remarks

This overload is used with SELECT statements when the table name (or alias) needs to be specified with each column name. If a tuple of DTOs is specified, a NULL column will separate the DTOs.

See Also


Sql.ColumnNames<T> method (6 of 6)

Returns a comma-delimited list of column names for a DTO of the specified type.

public static Sql ColumnNames<T>(params string[] tableNames)

Remarks

This overload is used with SELECT statements when the table name (or alias) needs to be specified with each column name. If a tuple of DTOs is specified, a NULL column will separate the DTOs.

See Also