Click or drag to resize
ORMClassExtensionsIsEmpty Method (IGroupByCollection)
Determines whether the specified groupbycollection is empty. A null passed in is also considered empty.

Namespace:  SD.LLBLGen.Pro.LinqSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.3.0.0 (5.3.0)
Syntax
public static bool IsEmpty(
	this IGroupByCollection toCheck
)

Parameters

toCheck
Type: SD.LLBLGen.Pro.ORMSupportClassesIGroupByCollection
To check.

Return Value

Type: Boolean
true if the groupbycollection passed in is null or has no elements, false otherwise.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IGroupByCollection. 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