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

Syntax

Visual Basic (Declaration)
Public Sub New ( _
	positionalParameterTypes As IType(), _
	positionalParameterValues As Object(), _
	lockModes As IDictionary, _
	rowSelection As RowSelection, _
	cacheable As Boolean, _
	cacheRegion As String, _
	comment As String, _
	isLookupByNaturalKey As Boolean _
)
C#
public QueryParameters(
	IType[] positionalParameterTypes,
	Object[] positionalParameterValues,
	IDictionary lockModes,
	RowSelection rowSelection,
	bool cacheable,
	string cacheRegion,
	string comment,
	bool isLookupByNaturalKey
)
Visual C++
public:
QueryParameters(
	array<IType^>^ positionalParameterTypes, 
	array<Object^>^ positionalParameterValues, 
	IDictionary^ lockModes, 
	RowSelection^ rowSelection, 
	bool cacheable, 
	String^ cacheRegion, 
	String^ comment, 
	bool isLookupByNaturalKey
)
JavaScript
NHibernate.Engine.QueryParameters = function(positionalParameterTypes, positionalParameterValues, lockModes, rowSelection, cacheable, cacheRegion, comment, isLookupByNaturalKey);

Parameters

positionalParameterTypes
Type: array< NHibernate.Type..::.IType >[]()[]
positionalParameterValues
Type: array< System..::.Object >[]()[]
lockModes
Type: System.Collections..::.IDictionary
rowSelection
Type: NHibernate.Engine..::.RowSelection
cacheable
Type: System..::.Boolean
cacheRegion
Type: System..::.String
comment
Type: System..::.String
isLookupByNaturalKey
Type: System..::.Boolean

See Also