Skip to content

SqlQuery.Column constructor (1 of 2)

Initializes a new instance of the Column class.

public Column(SqlQuery query, string expression, string? columnName, object? intoField)
parameter description
query The query.
expression The expression.
columnName Name of the column.
intoField The select into field.

See Also


SqlQuery.Column constructor (2 of 2)

Holds information about a column in SELECT clause.

public Column(string expression, string? columnName, int intoRow, object? intoField)
parameter description
expression The expression.
columnName Name of the column.
intoRow The select into row index.
intoField The select into field.

Remarks

Initializes a new instance of the Column class.

See Also