Gets the underlying SqlType for the column mapped by this NullableType.

Namespace:  NHibernate.Type
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
Public Overridable ReadOnly Property SqlType As SqlType
C#
public virtual SqlType SqlType { get; }
Visual C++
public:
virtual property SqlType^ SqlType {
	SqlType^ get ();
}
JavaScript
function get_sqlType();

Field Value

The underlying SqlType.

Remarks

This implementation should be suitable for all subclasses unless they need to do some special things to get the value. There are no built in NullableTypes that override this Property.

See Also