SqlNullabilityProcessor.ProcessValuesOrderingColumn Method
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.
If we still have _ord column here (it was not removed by other optimizations), we need to add value for it.
[Microsoft.EntityFrameworkCore.Infrastructure.EntityFrameworkInternal]
protected virtual System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression> ProcessValuesOrderingColumn(Microsoft.EntityFrameworkCore.Query.SqlExpressions.ValuesExpression valuesExpression, System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression> expressions, Microsoft.EntityFrameworkCore.Storage.IntTypeMapping intTypeMapping, ref int counter);
[<Microsoft.EntityFrameworkCore.Infrastructure.EntityFrameworkInternal>]
abstract member ProcessValuesOrderingColumn : Microsoft.EntityFrameworkCore.Query.SqlExpressions.ValuesExpression * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression> * Microsoft.EntityFrameworkCore.Storage.IntTypeMapping * int -> System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression>
override this.ProcessValuesOrderingColumn : Microsoft.EntityFrameworkCore.Query.SqlExpressions.ValuesExpression * System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression> * Microsoft.EntityFrameworkCore.Storage.IntTypeMapping * int -> System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression>
Protected Overridable Function ProcessValuesOrderingColumn (valuesExpression As ValuesExpression, expressions As IReadOnlyList(Of SqlExpression), intTypeMapping As IntTypeMapping, ByRef counter As Integer) As IReadOnlyList(Of SqlExpression)
Parameters
- valuesExpression
- ValuesExpression
Expression where to look for ordering column.
- expressions
- IReadOnlyList<SqlExpression>
Expressions for RowValueExpression.
- intTypeMapping
- IntTypeMapping
Type mapping for integer.
- counter
- Int32
Counter for constants for ordering column.
Returns
Row value with ordering, if needed.
- Attributes