DbModelBuilder.ComplexType<TComplexType> 方法
[此頁面專屬於 Entity Framework 第 6 版。最新版本可從 'Entity Framework' NuGet 套件取得。如需 Entity Framework 的詳細資訊,請參閱 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>
指定之複雜類型的組態物件。