DbModelBuilder.ComplexType<TComplexType> 方法

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

将一个类型注册为模型中的复杂类型,并返回一个可用来配置复杂类型的对象。 可对同一类型多次调用此方法以执行多行配置。

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

语法

声明
Public Overridable Function ComplexType(Of TComplexType As Class) As ComplexTypeConfiguration(Of TComplexType)
用法
Dim instance As DbModelBuilder 
Dim returnValue As ComplexTypeConfiguration(Of TComplexType)

returnValue = instance.ComplexType()
public virtual ComplexTypeConfiguration<TComplexType> ComplexType<TComplexType>()
where TComplexType : class
public:
generic<typename TComplexType>
where TComplexType : ref class 
virtual ComplexTypeConfiguration<TComplexType>^ ComplexType()
abstract ComplexType : unit -> ComplexTypeConfiguration<'TComplexType>  when 'TComplexType : not struct 
override ComplexType : unit -> ComplexTypeConfiguration<'TComplexType>  when 'TComplexType : not struct
JScript does not support generic types and methods.

类型参数

  • TComplexType
    要注册或配置的类型。

返回值

类型:System.Data.Entity.ModelConfiguration.ComplexTypeConfiguration<TComplexType>
指定的复杂类型的配置对象。

请参阅

参考

DbModelBuilder 类

System.Data.Entity 命名空间