Freigeben über


DbMigrationsConfiguration.SetHistoryContextFactory-Methode

[Diese Seite bezieht sich auf Entity Framework Version 6. Die neueste Version ist als 'Entity Framework' NuGet-Paket verfügbar. Weitere Informationen zu Entity Framework finden Sie unter msdn.com/data/ef.]

Fügt eine neue Factory zum Erstellen von HistoryContext-Instanzen hinzu, die für einen angegebenen Datenbankanbieter verwendet werden soll.

Namespace:  System.Data.Entity.Migrations
Assembly:  EntityFramework (in EntityFramework.dll)

Syntax

'Declaration
Public Sub SetHistoryContextFactory ( _
    providerInvariantName As String, _
    factory As Func(Of DbConnection, String, HistoryContext) _
)
'Usage
Dim instance As DbMigrationsConfiguration 
Dim providerInvariantName As String 
Dim factory As Func(Of DbConnection, String, HistoryContext)

instance.SetHistoryContextFactory(providerInvariantName, _
    factory)
public void SetHistoryContextFactory(
    string providerInvariantName,
    Func<DbConnection, string, HistoryContext> factory
)
public:
void SetHistoryContextFactory(
    String^ providerInvariantName, 
    Func<DbConnection^, String^, HistoryContext^>^ factory
)
member SetHistoryContextFactory : 
        providerInvariantName:string * 
        factory:Func<DbConnection, string, HistoryContext> -> unit
public function SetHistoryContextFactory(
    providerInvariantName : String, 
    factory : Func<DbConnection, String, HistoryContext>
)

Parameter

  • providerInvariantName
    Typ: System.String
    Der Name des Datenbankanbieters, für den der SQL-Generator festgelegt werden soll.

Siehe auch

Verweis

DbMigrationsConfiguration Klasse

System.Data.Entity.Migrations-Namespace