Class Select
Represents the information needed for select functions.
Inheritance
System.Object
Select
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.Olap.MDXQueryParser
Assembly: Syncfusion.Olap.Base.dll
Syntax
public class Select
Constructors
Select()
Initializes a new instance of the Syncfusion.Olap.UWP.MDXQueryParser.Select class.
Declaration
public Select()
Properties
Axes
Gets or sets the collection of axes.
Declaration
public AxisCollection Axes { get; set; }
Property Value
Type | Description |
---|---|
AxisCollection | The collection of axes. |
FromClause
Gets or sets the 'from' clause.
Declaration
public From FromClause { get; set; }
Property Value
Type | Description |
---|---|
From | The 'from' clause. |
SubSelect
Gets or sets the sub select clause.
Declaration
public Select SubSelect { get; set; }
Property Value
Type | Description |
---|---|
Select | The sub select clause. |
Wheres
Gets or sets the 'where' clause.
Declaration
public Where Wheres { get; set; }
Property Value
Type | Description |
---|---|
Where | The 'where' clause. |