Click or drag to resize

SortClauseProducersThenBy Method (ISortExpression, ISortClause)

Appends an ISortClause to an existing ISortExpression

Namespace:  SD.LLBLGen.Pro.QuerySpec
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.9.0.0 (5.9.0)
Syntax
public static ISortExpression ThenBy(
	this ISortExpression expression,
	ISortClause thenClause
)

Parameters

expression
Type: SD.LLBLGen.Pro.ORMSupportClassesISortExpression
the expression to append to
thenClause
Type: SD.LLBLGen.Pro.ORMSupportClassesISortClause
the clause to append

Return Value

Type: ISortExpression
the expression specified with thenClause appended

Usage Note

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