Sql.ColumnNamesWhere method (1 of 6)

Returns a comma-delimited list of column names for a DTO of the specified type for the properties whose names match the specified filter.

public static Sql ColumnNamesWhere(Type type, Func<string, bool> filter)

See Also


Sql.ColumnNamesWhere method (2 of 6)

Returns a comma-delimited list of column names for a DTO of the specified type for the properties whose names match the specified filter.

public static Sql ColumnNamesWhere(Type type, Func<string, bool> filter, 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.ColumnNamesWhere method (3 of 6)

Returns a comma-delimited list of column names for a DTO of the specified type for the properties whose names match the specified filter.

public static Sql ColumnNamesWhere(Type type, Func<string, bool> filter, 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.ColumnNamesWhere<T> method (4 of 6)

Returns a comma-delimited list of column names for a DTO of the specified type for the properties whose names match the specified filter.

public static Sql ColumnNamesWhere<T>(Func<string, bool> filter)

See Also


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

Returns a comma-delimited list of column names for a DTO of the specified type for the properties whose names match the specified filter.

public static Sql ColumnNamesWhere<T>(Func<string, bool> filter, 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.ColumnNamesWhere<T> method (6 of 6)

Returns a comma-delimited list of column names for a DTO of the specified type for the properties whose names match the specified filter.

public static Sql ColumnNamesWhere<T>(Func<string, bool> filter, 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