Método StatementBuilder.AddOrderBy (String, String, OrderBy.Direction)
Adds order by clause using name if the property appears in the select list if not, by value. Não referencie esse membro diretamente no código. Ele dá suporte à infraestrutura do SQL Server.
Namespace: Microsoft.SqlServer.Management.Sdk.Sfc
Assembly: Microsoft.SqlServer.Management.Sdk.Sfc (em Microsoft.SqlServer.Management.Sdk.Sfc.dll)
Sintaxe
'Declaração
Public Sub AddOrderBy ( _
prop As String, _
orderByValue As String, _
dir As OrderBy.Direction _
)
'Uso
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
)
Parâmetros
- prop
Tipo: System.String
The property of the object.
- orderByValue
Tipo: System.String
The order by value.
- dir
Tipo: Microsoft.SqlServer.Management.Sdk.Sfc.OrderBy.Direction
The direction of the order.