Costruttore OrderColumn (UserDefinedFunction, String, Boolean)
Creates a OrderColumn points to a column with an order that is specified within a table-valued function that was created by using CREATE FUNCTION and the ORDER BY clause.
Spazio dei nomi Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Sintassi
'Dichiarazione
Public Sub New ( _
udf As UserDefinedFunction, _
name As String, _
descending As Boolean _
)
'Utilizzo
Dim udf As UserDefinedFunction
Dim name As String
Dim descending As Boolean
Dim instance As New OrderColumn(udf, name, _
descending)
public OrderColumn(
UserDefinedFunction udf,
string name,
bool descending
)
public:
OrderColumn(
UserDefinedFunction^ udf,
String^ name,
bool descending
)
new :
udf:UserDefinedFunction *
name:string *
descending:bool -> OrderColumn
public function OrderColumn(
udf : UserDefinedFunction,
name : String,
descending : boolean
)
Parametri
- udf
Tipo: Microsoft.SqlServer.Management.Smo. . :: . .UserDefinedFunction
The UserDefinedFunction object that was created with CREATE FUNCTION and the ORDER BY clause.
- name
Tipo: System. . :: . .String
A name you wish to assign to the column.
- descending
Tipo: System. . :: . .Boolean
Specifies whether the column is sorted ascending (false) or descending (true).
Vedere anche