Determines whether the specified value is represented as nullNothingnullptra null reference (Nothing in Visual Basic) in the database.
Namespace:
NHibernate.Type
Assembly:
NHibernate (in NHibernate.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Overridable Function IsDatabaseNull ( _
value As Object _
) As Boolean |
C# |
---|
public virtual bool IsDatabaseNull(
Object value
) |
Visual C++ |
---|
public:
virtual bool IsDatabaseNull(
Object^ value
) |
JavaScript |
---|
function isDatabaseNull(value); |
Parameters
- value
- Type: System..::.Object
The value, may be nullNothingnullptra null reference (Nothing in Visual Basic).
Return Value
trueTruetruetrue (True in Visual Basic) if the specified value is
nullNothingnullptra null reference (Nothing in Visual Basic); otherwise,
falseFalsefalsefalse (False in Visual Basic).
Implements
IType..::.IsDatabaseNull(Object)
See Also