DbProviderServices.CreateDatabase-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.]
Erstellt eine durch die Verbindung angegebene Datenbank und erstellt Schemaobjekte (Tabellen, Primärschlüssel, Fremdschlüssel) auf Grundlage des Inhalts einer storeItemCollection.
Namespace: System.Data.Entity.Core.Common
Assembly: EntityFramework (in EntityFramework.dll)
Syntax
'Declaration
Public Sub CreateDatabase ( _
connection As DbConnection, _
commandTimeout As Nullable(Of Integer), _
storeItemCollection As StoreItemCollection _
)
'Usage
Dim instance As DbProviderServices
Dim connection As DbConnection
Dim commandTimeout As Nullable(Of Integer)
Dim storeItemCollection As StoreItemCollection
instance.CreateDatabase(connection, commandTimeout, _
storeItemCollection)
public void CreateDatabase(
DbConnection connection,
Nullable<int> commandTimeout,
StoreItemCollection storeItemCollection
)
public:
void CreateDatabase(
DbConnection^ connection,
Nullable<int> commandTimeout,
StoreItemCollection^ storeItemCollection
)
member CreateDatabase :
connection:DbConnection *
commandTimeout:Nullable<int> *
storeItemCollection:StoreItemCollection -> unit
public function CreateDatabase(
connection : DbConnection,
commandTimeout : Nullable<int>,
storeItemCollection : StoreItemCollection
)
Parameter
- connection
Typ: System.Data.Common.DbConnection
Verbindung mit einer nicht vorhandenen Datenbank, die erstellt und mit den Speicherobjekten aufgefüllt werden muss, die durch den storeItemCollection-Parameter angegeben werden.
- commandTimeout
Typ: System.Nullable<Int32>
Ausführungstimeout für Befehle, die zum Erstellen der Datenbank benötigt werden.
- storeItemCollection
Typ: System.Data.Entity.Core.Metadata.Edm.StoreItemCollection
Die Auflistung aller Speicherelemente, auf Grundlage derer das Skript erstellt werden soll.