DbModelBuilder.Entity<TEntityType> 方法
[本页针对的是实体框架版本 6。最新版本以“实体框架”NuGet 包的形式提供。有关实体框架的更多信息,请参见 msdn.com/data/ef。]
将实体类型注册为模型的一部分,并返回一个可用来配置实体的对象。 可对同一实体多次调用此方法以执行多行配置。
命名空间: System.Data.Entity
程序集: EntityFramework(在 EntityFramework.dll 中)
语法
声明
Public Overridable Function Entity(Of TEntityType As Class) As EntityTypeConfiguration(Of TEntityType)
用法
Dim instance As DbModelBuilder
Dim returnValue As EntityTypeConfiguration(Of TEntityType)
returnValue = instance.Entity()
public virtual EntityTypeConfiguration<TEntityType> Entity<TEntityType>()
where TEntityType : class
public:
generic<typename TEntityType>
where TEntityType : ref class
virtual EntityTypeConfiguration<TEntityType>^ Entity()
abstract Entity : unit -> EntityTypeConfiguration<'TEntityType> when 'TEntityType : not struct
override Entity : unit -> EntityTypeConfiguration<'TEntityType> when 'TEntityType : not struct
JScript does not support generic types and methods.
类型参数
- TEntityType
要注册或配置的类型。
返回值
类型:System.Data.Entity.ModelConfiguration.EntityTypeConfiguration<TEntityType>
指定的实体类型的配置对象。