StatementBuilder.AddOrderBy Method (String, String, OrderBy.Direction)
Adds order by clause using name if the property appears in the select list if not, by value. Do not reference this member directly in your code. It supports the SQL Server infrastructure.
Namespace: Microsoft.SqlServer.Management.Sdk.Sfc
Assembly: Microsoft.SqlServer.Management.Sdk.Sfc (in Microsoft.SqlServer.Management.Sdk.Sfc.dll)
Syntax
'Declaration
Public Sub AddOrderBy ( _
prop As String, _
orderByValue As String, _
dir As OrderBy.Direction _
)
'Usage
Dim instance As StatementBuilder
Dim prop As String
Dim orderByValue As String
Dim dir As OrderBy.Direction
instance.AddOrderBy(prop, orderByValue, _
dir)
public void AddOrderBy(
string prop,
string orderByValue,
OrderBy.Direction dir
)
public:
void AddOrderBy(
String^ prop,
String^ orderByValue,
OrderBy.Direction dir
)
member AddOrderBy :
prop:string *
orderByValue:string *
dir:OrderBy.Direction -> unit
public function AddOrderBy(
prop : String,
orderByValue : String,
dir : OrderBy.Direction
)
Parameters
- prop
Type: System.String
The property of the object.
- orderByValue
Type: System.String
The order by value.
- dir
Type: Microsoft.SqlServer.Management.Sdk.Sfc.OrderBy.Direction
The direction of the order.