UntypedRelationalValueBufferFactoryFactory Class

Definition

Caution

Use TypedRelationalValueBufferFactoryFactory instead.

Creates instances of the IRelationalValueBufferFactory type. IRelationalValueBufferFactory instances are tied to a specific result shape. This factory is responsible for creating the IRelationalValueBufferFactory for a given result shape.

This factory results in value buffers that use the untyped GetValues(Object[]) API to read back individual values from the underlying DbDataReader.

This type is typically used by database providers (and other extensions). It is generally not used in application code.

public class UntypedRelationalValueBufferFactoryFactory : Microsoft.EntityFrameworkCore.Storage.IRelationalValueBufferFactoryFactory
[System.Obsolete("Use TypedRelationalValueBufferFactoryFactory instead.")]
public class UntypedRelationalValueBufferFactoryFactory : Microsoft.EntityFrameworkCore.Storage.IRelationalValueBufferFactoryFactory
type UntypedRelationalValueBufferFactoryFactory = class
    interface IRelationalValueBufferFactoryFactory
[<System.Obsolete("Use TypedRelationalValueBufferFactoryFactory instead.")>]
type UntypedRelationalValueBufferFactoryFactory = class
    interface IRelationalValueBufferFactoryFactory
Public Class UntypedRelationalValueBufferFactoryFactory
Implements IRelationalValueBufferFactoryFactory
Inheritance
UntypedRelationalValueBufferFactoryFactory
Attributes
Implements

Constructors

UntypedRelationalValueBufferFactoryFactory()
UntypedRelationalValueBufferFactoryFactory(RelationalValueBufferFactoryDependencies)

Initializes a new instance of the UntypedRelationalValueBufferFactoryFactory class.

Properties

Dependencies

Parameter object containing dependencies for this service.

Methods

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

Creates a new IRelationalValueBufferFactory.

Create(IReadOnlyList<TypeMaterializationInfo>)

Creates a new IRelationalValueBufferFactory.

Applies to