Table of Contents

Enum BasicSqlBuilder.WindowNullsPlacement

Namespace
LinqToDB.Internal.SqlProvider
Assembly
linq2db.dll

How the IGNORE NULLS modifier of a value/offset window function is emitted relative to the argument list.

protected enum BasicSqlBuilder.WindowNullsPlacement
Extension Methods

Fields

AfterClose = 0

Keyword after the closing parenthesis: FUNC(args) IGNORE NULLS (Oracle, SQL Server 2022+, Informix).

AfterLastArgument = 1

Keyword inside the parentheses, after the last argument: FUNC(..., expr IGNORE NULLS) (DuckDB).

StringArgument = 2

Quoted string as the last argument: FUNC(args, 'IGNORE NULLS') (DB2).