Parent.RelationshipType Property

 

Applies To: SQL Server 2016 Preview

Gets or sets the relationship type of the member that is represented by Parent.

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

Syntax

[DataMemberAttribute]
public Nullable<RelationshipType> RelationshipType { get; set; }
public:
[DataMemberAttribute]
property Nullable<RelationshipType> RelationshipType {
    Nullable<RelationshipType> get();
    void set(Nullable<RelationshipType> value);
}
[<DataMemberAttribute>]
member RelationshipType : Nullable<RelationshipType> with get, set
<DataMemberAttribute>
Public Property RelationshipType As Nullable(Of RelationshipType)

Property Value

Type: System.Nullable<RelationshipType>

One of the values of RelationshipType. Possible values are Parent, Sibling, or All.

Remarks

The relationship can be a sibling relationship as well as a parent relationship when Parent is used in a create or update operation.

See Also

Parent Class
Microsoft.MasterDataServices Namespace

Return to top