Initializes a new instance of the IdentifierExpression class.

Namespace:  Mindscape.LightSpeed.Querying
Assembly:  Mindscape.LightSpeed (in Mindscape.LightSpeed.dll)
Version: 4.0.0.0 (4.0.0.0)

Syntax

C#
public IdentifierExpression(
	Type entityType,
	string alias,
	string name,
	IEnumerable<string> functions
)
Visual Basic (Declaration)
Public Sub New ( _
	entityType As Type, _
	alias As String, _
	name As String, _
	functions As IEnumerable(Of String) _
)

Parameters

entityType
Type: System..::.Type
The type of entity which is associated with this identifier expression
alias
Type: System..::.String
The alias to be applied to the entity type of this expression
name
Type: System..::.String
The identifier name.
functions
Type: System.Collections.Generic..::.IEnumerable<(Of <(String>)>)
A collection of functions to apply.

See Also