Share via


RowNumberExpression Constructor

Definition

Creates a new instance of the RowNumberExpression class.

public RowNumberExpression (System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression> partitions, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Query.SqlExpressions.OrderingExpression> orderings, Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping typeMapping);
public RowNumberExpression (System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression>? partitions, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Query.SqlExpressions.OrderingExpression> orderings, Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping? typeMapping);
new Microsoft.EntityFrameworkCore.Query.SqlExpressions.RowNumberExpression : System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression> * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Query.SqlExpressions.OrderingExpression> * Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.RowNumberExpression
Public Sub New (partitions As IReadOnlyList(Of SqlExpression), orderings As IReadOnlyList(Of OrderingExpression), typeMapping As RelationalTypeMapping)

Parameters

partitions
IReadOnlyList<SqlExpression>

A list expressions to partition by.

orderings
IReadOnlyList<OrderingExpression>

A list of ordering expressions to order by.

typeMapping
RelationalTypeMapping

The RelationalTypeMapping associated with the expression.

Applies to