Adds an ICriterion to the list of ICriterions to junction together.

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

Syntax

C#
public Junction Add<T>(
	Expression<Func<T, bool>> expression
)
Visual Basic
Public Function Add(Of T) ( _
	expression As Expression(Of Func(Of T, Boolean)) _
) As Junction
Visual C++
public:
generic<typename T>
Junction^ Add(
	Expression<Func<T, bool>^>^ expression
)

Parameters

expression
Type: System.Linq.Expressions..::..Expression<(Of <(<'Func<(Of <(<'T, Boolean>)>)>>)>)>

[Missing <param name="expression"/> documentation for "M:NHibernate.Criterion.Junction.Add``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})"]

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "M:NHibernate.Criterion.Junction.Add``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})"]

Return Value

[Missing <returns> documentation for "M:NHibernate.Criterion.Junction.Add``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})"]

See Also