IRelationalValueBufferFactoryFactory.Create Método

Definición

Sobrecargas

Create(IReadOnlyList<TypeMaterializationInfo>)

Crea un nuevo IRelationalValueBufferFactory.

Create(IReadOnlyList<Type>, IReadOnlyList<Int32>)
Obsoletos.

Crea un nuevo IRelationalValueBufferFactory.

Create(IReadOnlyList<TypeMaterializationInfo>)

public Microsoft.EntityFrameworkCore.Storage.IRelationalValueBufferFactory Create (System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Storage.TypeMaterializationInfo> types);
abstract member Create : System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Storage.TypeMaterializationInfo> -> Microsoft.EntityFrameworkCore.Storage.IRelationalValueBufferFactory
Public Function Create (types As IReadOnlyList(Of TypeMaterializationInfo)) As IRelationalValueBufferFactory

Parámetros

types
IReadOnlyList<TypeMaterializationInfo>

Tipos y asignación de los valores que se van a leer.

Devoluciones

Colección IRelationalValueBufferFactoryFactory creada recientemente.

Se aplica a

Create(IReadOnlyList<Type>, IReadOnlyList<Int32>)

Precaución

Use Create(IReadOnlyList<TypeMaterializationInfo>).

public Microsoft.EntityFrameworkCore.Storage.IRelationalValueBufferFactory Create (System.Collections.Generic.IReadOnlyList<Type> valueTypes, System.Collections.Generic.IReadOnlyList<int> indexMap);
[System.Obsolete("Use Create(IReadOnlyList<TypeMaterializationInfo>).")]
public Microsoft.EntityFrameworkCore.Storage.IRelationalValueBufferFactory Create (System.Collections.Generic.IReadOnlyList<Type> valueTypes, System.Collections.Generic.IReadOnlyList<int> indexMap);
abstract member Create : System.Collections.Generic.IReadOnlyList<Type> * System.Collections.Generic.IReadOnlyList<int> -> Microsoft.EntityFrameworkCore.Storage.IRelationalValueBufferFactory
[<System.Obsolete("Use Create(IReadOnlyList<TypeMaterializationInfo>).")>]
abstract member Create : System.Collections.Generic.IReadOnlyList<Type> * System.Collections.Generic.IReadOnlyList<int> -> Microsoft.EntityFrameworkCore.Storage.IRelationalValueBufferFactory
Public Function Create (valueTypes As IReadOnlyList(Of Type), indexMap As IReadOnlyList(Of Integer)) As IRelationalValueBufferFactory

Parámetros

valueTypes
IReadOnlyList<Type>

Tipos de valores que se van a devolver desde el búfer de valores.

indexMap
IReadOnlyList<Int32>

Lista ordenada de índices de base cero que se van a leer desde el conjunto de resultados subyacente (es decir, el primer número de esta lista es el índice del conjunto de resultados subyacente que se devolverá cuando se solicite el valor 0 desde el búfer de valores).

Devoluciones

Colección IRelationalValueBufferFactoryFactory creada recientemente.

Atributos

Se aplica a