Gets or sets if the column can have null values in it.

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

Syntax

Visual Basic (Declaration)
Public Property IsNullable As Boolean
C#
public bool IsNullable { get; set; }
Visual C++
public:
property bool IsNullable {
	bool get ();
	void set (bool value);
}
JavaScript
function get_isNullable();
function set_isNullable(value);

Field Value

trueTruetruetrue (True in Visual Basic) if the column can have a null value in it.

See Also