次の方法で共有


TypedRelationalValueBufferFactoryFactory.Create メソッド

定義

オーバーロード

Create(IReadOnlyList<TypeMaterializationInfo>)

新しい IRelationalValueBufferFactory を作成します。

Create(IReadOnlyList<Type>, IReadOnlyList<Int32>)
古い.

新しい IRelationalValueBufferFactory を作成します。

Create(IReadOnlyList<TypeMaterializationInfo>)

新しい IRelationalValueBufferFactory を作成します。

public virtual 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
override this.Create : System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Storage.TypeMaterializationInfo> -> Microsoft.EntityFrameworkCore.Storage.IRelationalValueBufferFactory
Public Overridable Function Create (types As IReadOnlyList(Of TypeMaterializationInfo)) As IRelationalValueBufferFactory

パラメーター

types
IReadOnlyList<TypeMaterializationInfo>

読み取る値の型とマッピング。

戻り値

新しく作成された IRelationalValueBufferFactoryFactory

実装

適用対象

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

注意事項

Use Create(IReadOnlyList<TypeMaterializationInfo>).

新しい IRelationalValueBufferFactory を作成します。

public virtual Microsoft.EntityFrameworkCore.Storage.IRelationalValueBufferFactory Create (System.Collections.Generic.IReadOnlyList<Type> valueTypes, System.Collections.Generic.IReadOnlyList<int> indexMap);
[System.Obsolete("Use Create(IReadOnlyList<TypeMaterializationInfo>).")]
public virtual 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
override this.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
override this.Create : System.Collections.Generic.IReadOnlyList<Type> * System.Collections.Generic.IReadOnlyList<int> -> Microsoft.EntityFrameworkCore.Storage.IRelationalValueBufferFactory
Public Overridable Function Create (valueTypes As IReadOnlyList(Of Type), indexMap As IReadOnlyList(Of Integer)) As IRelationalValueBufferFactory

パラメーター

valueTypes
IReadOnlyList<Type>

値バッファーから返される値の型。

indexMap
IReadOnlyList<Int32>

基になる結果セットから読み取られる 0 から始まるインデックスの順序付きリスト (つまり、このリストの最初の番号は、値バッファーから値 0 が要求されたときに返される基になる結果セットのインデックスです)。

戻り値

新しく作成された IRelationalValueBufferFactoryFactory

実装

属性

適用対象