RowNumberExpression Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.