Model.Entities Property

 

Applies To: SQL Server 2016 Preview

Gets or sets the Entity list.

Namespace:   Microsoft.MasterDataServices.Services.DataContracts
Assembly:  Microsoft.MasterDataServices.Services.Contracts (in Microsoft.MasterDataServices.Services.Contracts.dll)

Syntax

[DataMemberAttribute(IsRequired = false, EmitDefaultValue = false)]
public Collection<Entity> Entities { get; internal set; }
public:
[DataMemberAttribute(IsRequired = false, EmitDefaultValue = false)]
property Collection<Entity^>^ Entities {
    Collection<Entity^>^ get();
    internal: void set(Collection<Entity^>^ value);
}
[<DataMemberAttribute(IsRequired = false, EmitDefaultValue = false)>]
member Entities : Collection<Entity> with get, internal set
<DataMemberAttribute(IsRequired := False, EmitDefaultValue := False)>
Public Property Entities As Collection(Of Entity)
    Get
    Friend Set
End Property

Property Value

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

The collection of entities.

See Also

Model Class
Microsoft.MasterDataServices.Services.DataContracts Namespace

Return to top