Convenience method to check whether a given token represents a from-element alias.

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

Syntax

C#
public bool IsFromElementAlias(
	string possibleAlias
)
Visual Basic
Public Function IsFromElementAlias ( _
	possibleAlias As String _
) As Boolean
Visual C++
public:
bool IsFromElementAlias(
	String^ possibleAlias
)

Parameters

possibleAlias
Type: System..::..String
The potential from-element alias to check.

Return Value

True if the possibleAlias is an alias to a from-element visible from this point in the query graph.

See Also