DbProviderServices.DeleteDatabase-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.]
Löscht die angegebene Datenbank.
Namespace: System.Data.Entity.Core.Common
Assembly: EntityFramework (in EntityFramework.dll)
Syntax
'Declaration
Public Sub DeleteDatabase ( _
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.DeleteDatabase(connection, commandTimeout, _
storeItemCollection)
public void DeleteDatabase(
DbConnection connection,
Nullable<int> commandTimeout,
StoreItemCollection storeItemCollection
)
public:
void DeleteDatabase(
DbConnection^ connection,
Nullable<int> commandTimeout,
StoreItemCollection^ storeItemCollection
)
member DeleteDatabase :
connection:DbConnection *
commandTimeout:Nullable<int> *
storeItemCollection:StoreItemCollection -> unit
public function DeleteDatabase(
connection : DbConnection,
commandTimeout : Nullable<int>,
storeItemCollection : StoreItemCollection
)
Parameter
- connection
Typ: System.Data.Common.DbConnection
Verbindung mit einer vorhandenen Datenbank, die gelöscht werden muss.
- commandTimeout
Typ: System.Nullable<Int32>
Ausführungstimeout für Befehle, die zum Löschen der Datenbank benötigt werden.
- storeItemCollection
Typ: System.Data.Entity.Core.Metadata.Edm.StoreItemCollection
Die Auflistung aller Speicherelemente aus dem Modell. Dieser Parameter wird nicht mehr zum Löschen der Datenbank verwendet.