IParameterBindingFactories Interface

Definition

Allows a IParameterBindingFactory to be found from those registered in the internal service provider.

public interface IParameterBindingFactories
type IParameterBindingFactories = interface
Public Interface IParameterBindingFactories

Remarks

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

See Entity types with constructors for more information and examples.

Methods

FindFactory(Type, String)

Attempts to find a IParameterBindingFactory that can bind to a parameter with the given type and name.

Applies to