DimensionAttribute.OrderBy Property

 

Applies To: SQL Server 2016 Preview

Gets or sets how to order the members contained in the attribute.

Namespace:   Microsoft.AnalysisServices
Assembly:  Microsoft.AnalysisServices (in Microsoft.AnalysisServices.dll)

Syntax

[DefaultValueAttribute(OrderBy.Name)]
public OrderBy OrderBy { get; set; }
public:
[DefaultValueAttribute(OrderBy::Name)]
property OrderBy OrderBy {
    OrderBy get();
    void set(OrderBy value);
}
[<DefaultValueAttribute(OrderBy.Name)>]
member OrderBy : OrderBy with get, set
<DefaultValueAttribute(OrderBy.Name)>
Public Property OrderBy As OrderBy

Property Value

Type: Microsoft.AnalysisServices.OrderBy

A OrderBy that describes how to order the members contained in the attribute.

Remarks

The value of this property can be:

Value

Description

Name

Order by the member name.

Key

Order by the member key.

AttributeKey

Order by the member key of the attribute specified in the OrderByAttributeID property.

AttributeName

Order by the member name of the attribute specified in the OrderByAttributeID property.

See Also

DimensionAttribute Class
Microsoft.AnalysisServices Namespace

Return to top