Gets the mapped property type.

Namespace: Simol
Assembly: Simol (in Simol.dll) Version: 1.0.0.0

Syntax

C#
public Type PropertyType { get; set; }
Visual Basic
Public Property PropertyType As Type
	Get
	Set
Visual C++
public:
property Type^ PropertyType {
	Type^ get ();
	void set (Type^ value);
}

Field Value

The type of the property.

Remarks

Holds the actual property type. In other words, if the property is a nullable type, this will contain Nullable<(Of <(<'T>)>)>, not String, Int32, etc. Likewise, if the mapped property is defined as a generic collection such as List<(Of <(<'T>)>)>, the list type will be returned, not the type contained by the list.

See Also