Skip to main content

QueryOperand(DBColumn, String) Constructor

Initializes a new instance of the QueryOperand class with the specified column and alias name.

Namespace: DevExpress.Xpo.DB

Assembly: DevExpress.Data.v23.2.dll

NuGet Package: DevExpress.Data

Declaration

public QueryOperand(
    DBColumn column,
    string nodeAlias
)

Parameters

Name Type Description
column DBColumn

A DBColumn object representing the column that the query operand corresponds to. The name of this column is assigned to the QueryOperand.ColumnName property.

nodeAlias String

A String value that specifies the alias name of the table in a query. This value is assigned to the QueryOperand.NodeAlias field.

See Also