Add projection expressed as a lambda expression

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

Syntax

C#
IQueryOver<TRoot, TSubType> Select(
	params Expression<Func<TRoot, Object>>[] projections
)
Visual Basic
Function Select ( _
	ParamArray projections As Expression(Of Func(Of TRoot, Object))() _
) As IQueryOver(Of TRoot, TSubType)
Visual C++
IQueryOver<TRoot, TSubType>^ Select(
	... array<Expression<Func<TRoot, Object^>^>^>^ projections
)

Parameters

projections
Type: array<System.Linq.Expressions..::..Expression<(Of <(<'Func<(Of <(<'TRoot, Object>)>)>>)>)>>[]()[][]
Lambda expressions

Return Value

criteria instance

See Also