Click or drag to resize

QuerySpecExtensionMethods.Having<TDynamicQuery> Method

Specifies the having clause for the group by clause of this query. Ignored if the query has no group by specified at time of execution

Namespace:  SD.LLBLGen.Pro.QuerySpec
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.4.0.0 (5.4.0)
Syntax
public static TDynamicQuery Having<TDynamicQuery>(
	this TDynamicQuery query,
	IPredicate havingPredicate
)
where TDynamicQuery : DynamicQuery

Parameters

query
Type: TDynamicQuery
The query.
havingPredicate
Type: SD.LLBLGen.Pro.ORMSupportClasses.IPredicate
The having predicate.

Type Parameters

TDynamicQuery
The type of the dynamic query.

Return Value

Type: TDynamicQuery

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type . When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also