Share via


Name 속성

Gets the name of the Member.

네임스페이스:  Microsoft.AnalysisServices.AdomdServer
어셈블리:  msmgdsrv(msmgdsrv.dll)

구문

‘선언
Public ReadOnly Property Name As String
    Get
‘사용 방법
Dim instance As Member
Dim value As String

value = instance.Name
public string Name { get; }
public:
virtual property String^ Name {
    String^ get () sealed;
}
abstract Name : string
override Name : string
final function get Name () : String

속성 값

유형: System. . :: . .String
A String that contains the member name of the Member.

구현

IMetadataObject. . :: . .Name

주의

In Microsoft SQL Server 2005 Analysis Services(SSAS), member names can be derived from a column in the dimension table other than the column that supplies member keys for a given level. Although member keys must be unique within a level, member names can be changed in a changing dimension, and they are not necessarily unique within a dimension or hierarchy. You can reference a member by either its member name or its member key. Using the member key ensures precise member identification in these cases. The ampersand (&) character is used in Multidimensional Expressions (MDX) to differentiate a member key from a member name, as shown in the following example:

[Time].[Time].[2nd half].&[Q4]

In this case, the member key of the fourth quarter member, Q4, is used.

The Name property returns the member name of the Member. To get the member key of a Member, use the UniqueName property.