Given the name of a Hibernate type such as Decimal, Decimal(19,0)
, Int32, or even NHibernate.Type.DecimalType, NHibernate.Type.DecimalType(19,0),
NHibernate.Type.Int32Type, then return an instance of NHibernate.Type.IType
Namespace:
NHibernate.Type
Assembly:
NHibernate (in NHibernate.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Shared Function Basic ( _
name As String _
) As IType |
JavaScript |
---|
NHibernate.Type.TypeFactory.basic = function(name); |
Return Value
The instance of the IType that the string represents.
Remarks
See Also