Adds a parameter specification for a parameter encountered within this node. We use the term 'embedded' here because of the fact that the parameter was simply encountered as part of the node's text; it does not exist as part of a subtree as it might in a true AST.

Namespace: NHibernate.Hql.Ast.ANTLR.Tree
Assembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
void AddEmbeddedParameter(
	IParameterSpecification specification
)
Visual Basic
Sub AddEmbeddedParameter ( _
	specification As IParameterSpecification _
)
Visual C++
void AddEmbeddedParameter(
	IParameterSpecification^ specification
)

Parameters

specification
Type: NHibernate.Param..::..IParameterSpecification
The generated specification.

See Also