ModelTranslatorSplitToType.PropertiesMap Property
Gets a list of PropertyClass metadata objects that describe properties in the source schema and the corresponding list of PropertyClass metadata objects that describe properties that will 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 PropertiesMap As IList(Of Tuple(Of ModelPropertyClass, ModelPropertyClass))
public IList<Tuple<ModelPropertyClass, ModelPropertyClass>> PropertiesMap { get; }
public:
property IList<Tuple<ModelPropertyClass^, ModelPropertyClass^>^>^ PropertiesMap {
IList<Tuple<ModelPropertyClass^, ModelPropertyClass^>^>^ get ();
}
member PropertiesMap : IList<Tuple<ModelPropertyClass, ModelPropertyClass>>
function get PropertiesMap () : IList<Tuple<ModelPropertyClass, ModelPropertyClass>>
Property Value
Type: System.Collections.Generic.IList<Tuple<ModelPropertyClass, ModelPropertyClass>>
An IList<T> of type Tuple<T1, T2> where Item1 is a source PropertyClass, and Item2 holds the corresponding target PropertyClass.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
ModelTranslatorSplitToType Class
Microsoft.Data.Schema.SchemaModel.Translation Namespace
PropertyClass