Initializes a new instance of the QueryParameters class

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

Syntax

C#
public QueryParameters(
	IType[] positionalParameterTypes,
	Object[] positionalParameterValues,
	IDictionary<string, LockMode> lockModes,
	RowSelection rowSelection,
	bool isReadOnlyInitialized,
	bool readOnly,
	bool cacheable,
	string cacheRegion,
	string comment,
	bool isLookupByNaturalKey,
	IResultTransformer transformer
)
Visual Basic
Public Sub New ( _
	positionalParameterTypes As IType(), _
	positionalParameterValues As Object(), _
	lockModes As IDictionary(Of String, LockMode), _
	rowSelection As RowSelection, _
	isReadOnlyInitialized As Boolean, _
	readOnly As Boolean, _
	cacheable As Boolean, _
	cacheRegion As String, _
	comment As String, _
	isLookupByNaturalKey As Boolean, _
	transformer As IResultTransformer _
)
Visual C++
public:
QueryParameters(
	array<IType^>^ positionalParameterTypes, 
	array<Object^>^ positionalParameterValues, 
	IDictionary<String^, LockMode^>^ lockModes, 
	RowSelection^ rowSelection, 
	bool isReadOnlyInitialized, 
	bool readOnly, 
	bool cacheable, 
	String^ cacheRegion, 
	String^ comment, 
	bool isLookupByNaturalKey, 
	IResultTransformer^ transformer
)

Parameters

positionalParameterTypes
Type: array<NHibernate.Type..::..IType>[]()[][]

[Missing <param name="positionalParameterTypes"/> documentation for "M:NHibernate.Engine.QueryParameters.#ctor(NHibernate.Type.IType[],System.Object[],System.Collections.Generic.IDictionary{System.String,NHibernate.LockMode},NHibernate.Engine.RowSelection,System.Boolean,System.Boolean,System.Boolean,System.String,System.String,System.Boolean,NHibernate.Transform.IResultTransformer)"]

positionalParameterValues
Type: array<System..::..Object>[]()[][]

[Missing <param name="positionalParameterValues"/> documentation for "M:NHibernate.Engine.QueryParameters.#ctor(NHibernate.Type.IType[],System.Object[],System.Collections.Generic.IDictionary{System.String,NHibernate.LockMode},NHibernate.Engine.RowSelection,System.Boolean,System.Boolean,System.Boolean,System.String,System.String,System.Boolean,NHibernate.Transform.IResultTransformer)"]

lockModes
Type: System.Collections.Generic..::..IDictionary<(Of <(<'String, LockMode>)>)>

[Missing <param name="lockModes"/> documentation for "M:NHibernate.Engine.QueryParameters.#ctor(NHibernate.Type.IType[],System.Object[],System.Collections.Generic.IDictionary{System.String,NHibernate.LockMode},NHibernate.Engine.RowSelection,System.Boolean,System.Boolean,System.Boolean,System.String,System.String,System.Boolean,NHibernate.Transform.IResultTransformer)"]

rowSelection
Type: NHibernate.Engine..::..RowSelection

[Missing <param name="rowSelection"/> documentation for "M:NHibernate.Engine.QueryParameters.#ctor(NHibernate.Type.IType[],System.Object[],System.Collections.Generic.IDictionary{System.String,NHibernate.LockMode},NHibernate.Engine.RowSelection,System.Boolean,System.Boolean,System.Boolean,System.String,System.String,System.Boolean,NHibernate.Transform.IResultTransformer)"]

isReadOnlyInitialized
Type: System..::..Boolean

[Missing <param name="isReadOnlyInitialized"/> documentation for "M:NHibernate.Engine.QueryParameters.#ctor(NHibernate.Type.IType[],System.Object[],System.Collections.Generic.IDictionary{System.String,NHibernate.LockMode},NHibernate.Engine.RowSelection,System.Boolean,System.Boolean,System.Boolean,System.String,System.String,System.Boolean,NHibernate.Transform.IResultTransformer)"]

readOnly
Type: System..::..Boolean

[Missing <param name="readOnly"/> documentation for "M:NHibernate.Engine.QueryParameters.#ctor(NHibernate.Type.IType[],System.Object[],System.Collections.Generic.IDictionary{System.String,NHibernate.LockMode},NHibernate.Engine.RowSelection,System.Boolean,System.Boolean,System.Boolean,System.String,System.String,System.Boolean,NHibernate.Transform.IResultTransformer)"]

cacheable
Type: System..::..Boolean

[Missing <param name="cacheable"/> documentation for "M:NHibernate.Engine.QueryParameters.#ctor(NHibernate.Type.IType[],System.Object[],System.Collections.Generic.IDictionary{System.String,NHibernate.LockMode},NHibernate.Engine.RowSelection,System.Boolean,System.Boolean,System.Boolean,System.String,System.String,System.Boolean,NHibernate.Transform.IResultTransformer)"]

cacheRegion
Type: System..::..String

[Missing <param name="cacheRegion"/> documentation for "M:NHibernate.Engine.QueryParameters.#ctor(NHibernate.Type.IType[],System.Object[],System.Collections.Generic.IDictionary{System.String,NHibernate.LockMode},NHibernate.Engine.RowSelection,System.Boolean,System.Boolean,System.Boolean,System.String,System.String,System.Boolean,NHibernate.Transform.IResultTransformer)"]

comment
Type: System..::..String

[Missing <param name="comment"/> documentation for "M:NHibernate.Engine.QueryParameters.#ctor(NHibernate.Type.IType[],System.Object[],System.Collections.Generic.IDictionary{System.String,NHibernate.LockMode},NHibernate.Engine.RowSelection,System.Boolean,System.Boolean,System.Boolean,System.String,System.String,System.Boolean,NHibernate.Transform.IResultTransformer)"]

isLookupByNaturalKey
Type: System..::..Boolean

[Missing <param name="isLookupByNaturalKey"/> documentation for "M:NHibernate.Engine.QueryParameters.#ctor(NHibernate.Type.IType[],System.Object[],System.Collections.Generic.IDictionary{System.String,NHibernate.LockMode},NHibernate.Engine.RowSelection,System.Boolean,System.Boolean,System.Boolean,System.String,System.String,System.Boolean,NHibernate.Transform.IResultTransformer)"]

transformer
Type: NHibernate.Transform..::..IResultTransformer

[Missing <param name="transformer"/> documentation for "M:NHibernate.Engine.QueryParameters.#ctor(NHibernate.Type.IType[],System.Object[],System.Collections.Generic.IDictionary{System.String,NHibernate.LockMode},NHibernate.Engine.RowSelection,System.Boolean,System.Boolean,System.Boolean,System.String,System.String,System.Boolean,NHibernate.Transform.IResultTransformer)"]

See Also