Entity.IsFlat Property

Gets or sets a value that indicates whether the entity has an explicit hierarchy or not.

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

Syntax

'Declaration
<DataMemberAttribute(IsRequired := False)> _
Public Property IsFlat As Boolean 
    Get 
    Set
'Usage
Dim instance As Entity 
Dim value As Boolean 

value = instance.IsFlat

instance.IsFlat = value
[DataMemberAttribute(IsRequired = false)]
public bool IsFlat { get; set; }
[DataMemberAttribute(IsRequired = false)]
public:
property bool IsFlat {
    bool get ();
    void set (bool value);
}
[<DataMemberAttribute(IsRequired = false)>]
member IsFlat : bool with get, set
function get IsFlat () : boolean 
function set IsFlat (value : boolean)

Property Value

Type: System.Boolean
true if the entity does not have an explicit hierarchy; false if the entity does have an explicit hierarchy.

See Also

Reference

Entity Class

Microsoft.MasterDataServices.Services.DataContracts Namespace