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

Syntax

Visual Basic (Declaration)
Public Shared Sub BindColumns ( _
	node As XmlNode, _
	model As SimpleValue, _
	isNullable As Boolean, _
	autoColumn As Boolean, _
	propertyPath As String, _
	mappings As Mappings _
)
C#
public static void BindColumns(
	XmlNode node,
	SimpleValue model,
	bool isNullable,
	bool autoColumn,
	string propertyPath,
	Mappings mappings
)
Visual C++
public:
static void BindColumns(
	XmlNode^ node, 
	SimpleValue^ model, 
	bool isNullable, 
	bool autoColumn, 
	String^ propertyPath, 
	Mappings^ mappings
)
JavaScript
NHibernate.Cfg.HbmBinder.bindColumns = function(node, model, isNullable, autoColumn, propertyPath, mappings);

Parameters

node
Type: System.Xml..::.XmlNode
model
Type: NHibernate.Mapping..::.SimpleValue
isNullable
Type: System..::.Boolean
autoColumn
Type: System..::.Boolean
propertyPath
Type: System..::.String
mappings
Type: NHibernate.Cfg..::.Mappings

See Also