Share via


ModelTranslatorSplitToType.RelationshipsMap Property

Gets a list of RelationshipClass metadata objects that describe relationships in the source schema and the corresponding list of RelationshipClass metadata objects that describe relationships to be created in the target schema.

Namespace:  Microsoft.Data.Schema.SchemaModel.Translation
Assembly:  Microsoft.Data.Schema (in Microsoft.Data.Schema.dll)

Syntax

'Declaration
Public ReadOnly Property RelationshipsMap As IList(Of Tuple(Of ModelRelationshipClass, ModelRelationshipClass))
public IList<Tuple<ModelRelationshipClass, ModelRelationshipClass>> RelationshipsMap { get; }
public:
property IList<Tuple<ModelRelationshipClass^, ModelRelationshipClass^>^>^ RelationshipsMap {
    IList<Tuple<ModelRelationshipClass^, ModelRelationshipClass^>^>^ get ();
}
member RelationshipsMap : IList<Tuple<ModelRelationshipClass, ModelRelationshipClass>>
function get RelationshipsMap () : IList<Tuple<ModelRelationshipClass, ModelRelationshipClass>>

Property Value

Type: System.Collections.Generic.IList<Tuple<ModelRelationshipClass, ModelRelationshipClass>>
An IList<T> of type Tuple<T1, T2> where Item1 is a source RelationshipClass, and Item2 holds the corresponding target RelationshipClass.

.NET Framework Security

See Also

Reference

ModelTranslatorSplitToType Class

Microsoft.Data.Schema.SchemaModel.Translation Namespace

RelationshipClass

Tuple<T1, T2>