Class WindowFunctionsMemberTranslator.WindowFunctionInformation
- Namespace
- LinqToDB.Linq.Translation
- Assembly
- linq2db.dll
public class WindowFunctionsMemberTranslator.WindowFunctionInformation
- Inheritance
-
objectWindowFunctionsMemberTranslator.WindowFunctionInformation
- Extension Methods
Properties
Arguments
public required WindowFunctionsMemberTranslator.ArgumentInformation[]? Arguments { get; set; }
Property Value
End
public required WindowFunctionsMemberTranslator.FrameBoundary? End { get; set; }
Property Value
Filter
public required Expression? Filter { get; set; }
Property Value
FrameExclusion
public required SqlFrameClause.FrameExclusionKind FrameExclusion { get; set; }
Property Value
FrameType
public required SqlFrameClause.FrameTypeKind? FrameType { get; set; }
Property Value
FromPosition
FROM FIRST / FROM LAST position for NTH_VALUE.
public Sql.From FromPosition { get; set; }
Property Value
KeepOrderBy
ORDER BY keys for the KEEP (DENSE_RANK FIRST/LAST) clause.
public required WindowFunctionsMemberTranslator.OrderByInformation[]? KeepOrderBy { get; set; }
Property Value
KeepType
KEEP (DENSE_RANK FIRST/LAST) modifier for the aggregate, or null when there is no KEEP clause.
public required SqlKeepClause.KeepType? KeepType { get; set; }
Property Value
NullTreatment
NULL treatment (RESPECT / IGNORE NULLS) for offset and value functions.
public Sql.Nulls NullTreatment { get; set; }
Property Value
OrderBy
public required WindowFunctionsMemberTranslator.OrderByInformation[]? OrderBy { get; set; }
Property Value
PartitionBy
public required Expression[]? PartitionBy { get; set; }
Property Value
Start
public required WindowFunctionsMemberTranslator.FrameBoundary? Start { get; set; }