Constructs StandardProperty instances.

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

Syntax

Visual Basic (Declaration)
Public Sub New ( _
	name As String, _
	node As String, _
	type As IType, _
	lazy As Boolean, _
	insertable As Boolean, _
	updateable As Boolean, _
	insertGenerated As Boolean, _
	updateGenerated As Boolean, _
	nullable As Boolean, _
	checkable As Boolean, _
	versionable As Boolean, _
	cascadeStyle As Cascades..::.CascadeStyle _
)
C#
public StandardProperty(
	string name,
	string node,
	IType type,
	bool lazy,
	bool insertable,
	bool updateable,
	bool insertGenerated,
	bool updateGenerated,
	bool nullable,
	bool checkable,
	bool versionable,
	Cascades..::.CascadeStyle cascadeStyle
)
Visual C++
public:
StandardProperty(
	String^ name, 
	String^ node, 
	IType^ type, 
	bool lazy, 
	bool insertable, 
	bool updateable, 
	bool insertGenerated, 
	bool updateGenerated, 
	bool nullable, 
	bool checkable, 
	bool versionable, 
	Cascades..::.CascadeStyle^ cascadeStyle
)
JavaScript
NHibernate.Tuple.StandardProperty = function(name, node, type, lazy, insertable, updateable, insertGenerated, updateGenerated, nullable, checkable, versionable, cascadeStyle);

Parameters

name
Type: System..::.String
The name by which the property can be referenced within its owner.
node
Type: System..::.String
The node name to use for XML-based representation of this property.
type
Type: NHibernate.Type..::.IType
The Hibernate Type of this property.
lazy
Type: System..::.Boolean
Should this property be handled lazily?
insertable
Type: System..::.Boolean
Is this property an insertable value?
updateable
Type: System..::.Boolean
Is this property an updateable value?
insertGenerated
Type: System..::.Boolean
Is this property generated in the database on insert?
updateGenerated
Type: System..::.Boolean
Is this property generated in the database on update?
nullable
Type: System..::.Boolean
Is this property a nullable value?
checkable
Type: System..::.Boolean
Is this property a checkable value?
versionable
Type: System..::.Boolean
Is this property a versionable value?
cascadeStyle
Type: NHibernate.Engine..::.Cascades..::.CascadeStyle
The cascade style for this property's value.

See Also