Entity.MemberTypes Property

 

Applies To: SQL Server 2016 Preview

Gets or sets an array of entity member types.

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

Syntax

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

Property Value

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

A collection of type EntityMemberType.

See Also

Entity Class
Microsoft.MasterDataServices Namespace

Return to top