ConfigurationRegistrar.Add<TComplexType> 方法 (ComplexTypeConfiguration<TComplexType>)
[此頁面專屬於 Entity Framework 第 6 版。最新版本可從 'Entity Framework' NuGet 套件取得。如需 Entity Framework 的詳細資訊,請參閱 msdn.com/data/ef。]
將 ComplexTypeConfiguration 加入至 DbModelBuilder。 只能針對模型中的每一個類型加入一個 ComplexTypeConfiguration。
命名空間: System.Data.Entity.ModelConfiguration.Configuration
組件: EntityFramework (在 EntityFramework.dll 中)
語法
'宣告
Public Overridable Function Add(Of TComplexType As Class) ( _
complexTypeConfiguration As ComplexTypeConfiguration(Of TComplexType) _
) As ConfigurationRegistrar
'用途
Dim instance As ConfigurationRegistrar
Dim complexTypeConfiguration As ComplexTypeConfiguration(Of TComplexType)
Dim returnValue As ConfigurationRegistrar
returnValue = instance.Add(complexTypeConfiguration)
public virtual ConfigurationRegistrar Add<TComplexType>(
ComplexTypeConfiguration<TComplexType> complexTypeConfiguration
)
where TComplexType : class
public:
generic<typename TComplexType>
where TComplexType : ref class
virtual ConfigurationRegistrar^ Add(
ComplexTypeConfiguration<TComplexType>^ complexTypeConfiguration
)
abstract Add :
complexTypeConfiguration:ComplexTypeConfiguration<'TComplexType> -> ConfigurationRegistrar when 'TComplexType : not struct
override Add :
complexTypeConfiguration:ComplexTypeConfiguration<'TComplexType> -> ConfigurationRegistrar when 'TComplexType : not struct
JScript does not support generic types and methods.
類型參數
- TComplexType
正在設定的複雜類型。
參數
- complexTypeConfiguration
類型:System.Data.Entity.ModelConfiguration.ComplexTypeConfiguration<TComplexType>
要加入的複雜類型組態
傳回值
類型:System.Data.Entity.ModelConfiguration.Configuration.ConfigurationRegistrar
相同的 ConfigurationRegistrar 執行個體,以便鏈結多個呼叫。