Interface WindowFunctionBuilder.INullTreatmentPart<TNext>
- Namespace
- LinqToDB
- Assembly
- linq2db.dll
Provides function-level null treatment (IGNORE NULLS / RESPECT NULLS) for value/offset window functions.
public interface WindowFunctionBuilder.INullTreatmentPart<out TNext> where TNext : class
Type Parameters
TNext
- Extension Methods
Methods
IgnoreNulls()
Adds IGNORE NULLS — the function skips NULL values. Not supported by every provider.
TNext IgnoreNulls()
Returns
- TNext
RespectNulls()
Adds RESPECT NULLS — the SQL default. Provided for explicitness; emits nothing on providers where it is the default.
TNext RespectNulls()
Returns
- TNext