Represents a TOP modifier for a SELECT clause
Default constructor
public Void TopModifier()
Initializes a new instance of TopModifier.
public Void TopModifier(expression)
Name | Type | Summary |
---|---|---|
expression | Int32 | The expression for the TOP keyword |
Initializes a new instance of TopModifier.
public Void TopModifier(expression, percent)
Name | Type | Summary |
---|---|---|
expression | Int32 | The expression for the TOP keyword |
percent | Boolean | Indicates if the percent option should be used |
Get or set the expression for the top clause
public Int32 Expression { get; set; }
Get or ser whether the top clause aplies a percent filter
public Boolean IsPercent { get; set; }
In this document