IPropertyParameterBindingFactory Interface

Definition

Finds a ParameterBinding specifically for some form of property (that is, some IPropertyBase) of the model.

public interface IPropertyParameterBindingFactory
type IPropertyParameterBindingFactory = interface
Public Interface IPropertyParameterBindingFactory

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

FindParameter(IComplexType, Type, String)

Finds a ParameterBinding specifically for an IPropertyBase in the model.

FindParameter(IEntityType, Type, String)

Finds a ParameterBinding specifically for an IPropertyBase in the model.

Applies to