Table of Contents

Interface IMethodCallTranslatorPlugin

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

Represents plugin for IMethodCallTranslator.

The service lifetime is Singleton and multiple registrations are allowed. This means a single instance of each service 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 IMethodCallTranslatorPlugin

Properties

Translators

Gets the method call translators.

IEnumerable<IMethodCallTranslator> Translators { get; }

Property Value

IEnumerable<IMethodCallTranslator>