Table of Contents

Interface IRelationalParameterBasedSqlProcessorFactory

Namespace
Microsoft.EntityFrameworkCore.Query
Assembly
Microsoft.EntityFrameworkCore.Relational.dll

A factory for creating RelationalParameterBasedSqlProcessor instances.

The service lifetime is Singleton. This means a single instance is used by many Microsoft.EntityFrameworkCore.DbContext instances. The implementation must be thread-safe. This service cannot depend on services registered as Scoped.

public interface IRelationalParameterBasedSqlProcessorFactory

Methods

Create(bool)

RelationalParameterBasedSqlProcessor Create(bool useRelationalNulls)

Parameters

useRelationalNulls bool

A bool value indicating if relational nulls should be used.

Returns

RelationalParameterBasedSqlProcessor

A relational parameter based sql processor.