Member.Parents Property

 

Applies To: SQL Server 2016 Preview

Gets or sets an array that includes parents of the member from explicit hierarchies.

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

Syntax

[DataMemberAttribute(EmitDefaultValue = false)]
public Collection<Parent> Parents { get; set; }
public:
[DataMemberAttribute(EmitDefaultValue = false)]
property Collection<Parent^>^ Parents {
    Collection<Parent^>^ get();
    void set(Collection<Parent^>^ value);
}
[<DataMemberAttribute(EmitDefaultValue = false)>]
member Parents : Collection<Parent> with get, set
<DataMemberAttribute(EmitDefaultValue := False)>
Public Property Parents As Collection(Of Parent)

Property Value

Type: System.Collections.ObjectModel.Collection<Parent>

A collection of type Parent.

See Also

Member Class
Microsoft.MasterDataServices Namespace

Return to top