DbProviderServices.DatabaseExists-Methode (DbConnection, Nullable<Int32>, Lazy<StoreItemCollection>)
[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.]
Gibt einen Wert zurück, der angibt, ob eine bestimmte Datenbank auf dem Server vorhanden ist.
Namespace: System.Data.Entity.Core.Common
Assembly: EntityFramework (in EntityFramework.dll)
Syntax
'Declaration
Public Function DatabaseExists ( _
connection As DbConnection, _
commandTimeout As Nullable(Of Integer), _
storeItemCollection As Lazy(Of StoreItemCollection) _
) As Boolean
'Usage
Dim instance As DbProviderServices
Dim connection As DbConnection
Dim commandTimeout As Nullable(Of Integer)
Dim storeItemCollection As Lazy(Of StoreItemCollection)
Dim returnValue As Boolean
returnValue = instance.DatabaseExists(connection, _
commandTimeout, storeItemCollection)
public bool DatabaseExists(
DbConnection connection,
Nullable<int> commandTimeout,
Lazy<StoreItemCollection> storeItemCollection
)
public:
bool DatabaseExists(
DbConnection^ connection,
Nullable<int> commandTimeout,
Lazy<StoreItemCollection^>^ storeItemCollection
)
member DatabaseExists :
connection:DbConnection *
commandTimeout:Nullable<int> *
storeItemCollection:Lazy<StoreItemCollection> -> bool
public function DatabaseExists(
connection : DbConnection,
commandTimeout : Nullable<int>,
storeItemCollection : Lazy<StoreItemCollection>
) : boolean
Parameter
- connection
Typ: System.Data.Common.DbConnection
Verbindung mit einer Datenbank, deren Existenz mithilfe dieser Methode überprüft wird.
- commandTimeout
Typ: System.Nullable<Int32>
Ausführungstimeout für Befehle, die zum Bestimmen der Existenz der Datenbank benötigt werden.
- storeItemCollection
Typ: System.Lazy<StoreItemCollection>
Die Auflistung aller Speicherelemente aus dem Modell. Dieser Parameter wird nicht mehr zur Bestimmung der Datenbankexistenz verwendet.
Rückgabewert
Typ: System.Boolean
True, wenn der Anbieter die Datenbank nur auf Grundlage der Verbindung herleiten kann.