Class Select
AST Node representing the Select part of a Query statement. e.g.: In
From X In Timesheet Select Top (100) X
a derived instance of this node represents "Select Top (100) X".
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: TimeCockpit.Data.QueryLanguage.Syntax
Assembly: TimeCockpit.Data.dll
Syntax
public abstract class Select : Node
Constructors
Select(Int32)
Initializes a new instance of the Select class.
Declaration
public Select(int topCount)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | topCount | the top parameter. |
Properties
IsTopLimited
Gets a value indicating whether the top value is set or not.
Declaration
public bool IsTopLimited { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
TopCount
Gets the top count to select, -1 if no top limitation is used.
Declaration
public int TopCount { get; }
Property Value
Type | Description |
---|---|
System.Int32 |