QuerySpecExtensionMethodsHavingTDynamicQuery 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)
Syntaxpublic static TDynamicQuery Having<TDynamicQuery>(
	this TDynamicQuery query,
	IPredicate havingPredicate
)
where TDynamicQuery : DynamicQuery
<ExtensionAttribute>
Public Shared Function Having(Of TDynamicQuery As DynamicQuery) ( 
	query As TDynamicQuery,
	havingPredicate As IPredicate
) As TDynamicQuery
Parameters
- query
 - Type: TDynamicQuery
The query. - havingPredicate
 - Type: SD.LLBLGen.Pro.ORMSupportClassesIPredicate
The having predicate. 
Type Parameters
- TDynamicQuery
 - The type of the dynamic query.
 
Return Value
Type: 
TDynamicQueryUsage 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