IConstructorBindingFactory 接口

定义

用于查找和创建 InstantiationBinding 给定 CLR 构造函数实例的工厂。

public interface IConstructorBindingFactory
type IConstructorBindingFactory = interface
Public Interface IConstructorBindingFactory

注解

服务生存期为 Singleton。 这意味着多个实例使用 DbContext 单个实例。 实现必须是线程安全的。 此服务不能依赖于注册为 的服务 Scoped

有关详细信息和示例 ,请参阅具有构造函数的实体类型

方法

GetBindings(IConventionEntityType, InstantiationBinding, InstantiationBinding)

InstantiationBinding为具有大多数参数的构造函数和仅具有服务属性参数的构造函数创建 。

GetBindings(IMutableEntityType, InstantiationBinding, InstantiationBinding)

InstantiationBinding为具有大多数参数的构造函数和仅具有服务属性参数的构造函数创建 。

GetBindings(IReadOnlyComplexType, InstantiationBinding, InstantiationBinding)

InstantiationBinding为具有大多数参数的构造函数和仅具有服务属性参数的构造函数创建 。

GetBindings(IReadOnlyEntityType, InstantiationBinding, InstantiationBinding)

InstantiationBinding为具有大多数参数的构造函数和仅具有服务属性参数的构造函数创建 。

TryBindConstructor(IConventionEntityType, ConstructorInfo, InstantiationBinding, IEnumerable<ParameterInfo>)

尝试为给定实体类型创建 InstantiationBindingConstructorInfo

TryBindConstructor(IMutableEntityType, ConstructorInfo, InstantiationBinding, IEnumerable<ParameterInfo>)

尝试为给定实体类型创建 InstantiationBindingConstructorInfo

适用于