Gets or sets the sql data type name of the column.

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

Syntax

Visual Basic (Declaration)
Public Property SqlType As String
C#
public string SqlType { get; set; }
Visual C++
public:
property String^ SqlType {
	String^ get ();
	void set (String^ value);
}
JavaScript
function get_sqlType();
function set_sqlType(value);

Field Value

The sql data type name of the column.

Remarks

This is usually read from the sql-type attribute.

See Also