Table of Contents

Interface WindowFunctionBuilder.IThenOrderPart<TThenPart>

Namespace
LinqToDB
Assembly
linq2db.dll

Provides additional ORDER BY columns via ThenBy/ThenByDesc.

public interface WindowFunctionBuilder.IThenOrderPart<out TThenPart> where TThenPart : class

Type Parameters

TThenPart
Extension Methods

Methods

ThenBy(object?)

Adds an additional ORDER BY column.

TThenPart ThenBy(object? orderBy)

Parameters

orderBy object

Returns

TThenPart

ThenBy(object?, NullsPosition)

Adds an additional ORDER BY column with NULLS position.

TThenPart ThenBy(object? orderBy, Sql.NullsPosition nulls)

Parameters

orderBy object
nulls Sql.NullsPosition

Returns

TThenPart

ThenByDesc(object?)

Adds an additional ORDER BY column (descending).

TThenPart ThenByDesc(object? orderBy)

Parameters

orderBy object

Returns

TThenPart

ThenByDesc(object?, NullsPosition)

Adds an additional ORDER BY column (descending) with NULLS position.

TThenPart ThenByDesc(object? orderBy, Sql.NullsPosition nulls)

Parameters

orderBy object
nulls Sql.NullsPosition

Returns

TThenPart