ModelMetadata.IsComplexType Property

Definition

Gets a value indicating whether ModelType is a complex type.

public:
 property bool IsComplexType { bool get(); };
public bool IsComplexType { get; }
member this.IsComplexType : bool
Public ReadOnly Property IsComplexType As Boolean

Property Value

Remarks

A complex type is defined as a Type without a TypeConverter that can convert from String and without a TryParse method. Most POCO and IEnumerable types are therefore complex. Most, if not all, BCL value types are simple types.

Applies to