共用方式為


HistoryContext 建構函式

[此頁面專屬於 Entity Framework 第 6 版。最新版本可從 'Entity Framework' NuGet 套件取得。如需 Entity Framework 的詳細資訊,請參閱 msdn.com/data/ef。]

初始化 HistoryContext 類別的新執行個體。 如果您要建立衍生的記錄內容,通常就會公開一個建構函式,接受相同的參數並且將其傳遞給此基底建構函式。

命名空間:  System.Data.Entity.Migrations.History
組件:  EntityFramework (在 EntityFramework.dll 中)

語法

'宣告
<SuppressMessageAttribute("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")> _
Public Sub New ( _
    existingConnection As DbConnection, _
    defaultSchema As String _
)
'用途
Dim existingConnection As DbConnection 
Dim defaultSchema As String 

Dim instance As New HistoryContext(existingConnection, _
    defaultSchema)
[SuppressMessageAttribute("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
public HistoryContext(
    DbConnection existingConnection,
    string defaultSchema
)
[SuppressMessageAttribute(L"Microsoft.Usage", L"CA2214:DoNotCallOverridableMethodsInConstructors")]
public:
HistoryContext(
    DbConnection^ existingConnection, 
    String^ defaultSchema
)
[<SuppressMessageAttribute("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")>]
new : 
        existingConnection:DbConnection * 
        defaultSchema:string -> HistoryContext
public function HistoryContext(
    existingConnection : DbConnection, 
    defaultSchema : String
)

參數

  • defaultSchema
    類型:System.String
    移轉之模型的預設結構描述。 除非在 OnModelCreating 中設定了不同的結構描述,否則此結構描述會用於移轉記錄資料表。

請參閱

參考

HistoryContext 類別

System.Data.Entity.Migrations.History 命名空間