DbModelBuilder.RegisterEntityType 方法

[本页针对的是实体框架版本 6。最新版本以“实体框架”NuGet 包的形式提供。有关实体框架的更多信息,请参见 msdn.com/data/ef。]

将实体类型注册为模型的一部分。

命名空间:  System.Data.Entity
程序集:  EntityFramework(在 EntityFramework.dll 中)

语法

声明
Public Overridable Sub RegisterEntityType ( _
    entityType As Type _
)
用法
Dim instance As DbModelBuilder 
Dim entityType As Type

instance.RegisterEntityType(entityType)
public virtual void RegisterEntityType(
    Type entityType
)
public:
virtual void RegisterEntityType(
    Type^ entityType
)
abstract RegisterEntityType : 
        entityType:Type -> unit  
override RegisterEntityType : 
        entityType:Type -> unit
public function RegisterEntityType(
    entityType : Type
)

参数

  • entityType
    类型:System.Type
    要注册的类型。

备注

出于便利提供此方法,以允许动态注册实体类型,而无需使用 MakeGenericMethod 来调用常规泛型 Entity 方法。 此方法不允许使用 Fluent API 进一步配置实体类型,因为这些 API 广泛使用泛型 type 参数。

请参阅

参考

DbModelBuilder 类

System.Data.Entity 命名空间