Database.Exists-Methode (DbConnection)
[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.]
Überprüft, ob die Datenbank auf dem Server vorhanden ist.
Namespace: System.Data.Entity
Assembly: EntityFramework (in EntityFramework.dll)
Syntax
'Declaration
Public Shared Function Exists ( _
existingConnection As DbConnection _
) As Boolean
'Usage
Dim existingConnection As DbConnection
Dim returnValue As Boolean
returnValue = Database.Exists(existingConnection)
public static bool Exists(
DbConnection existingConnection
)
public:
static bool Exists(
DbConnection^ existingConnection
)
static member Exists :
existingConnection:DbConnection -> bool
public static function Exists(
existingConnection : DbConnection
) : boolean
Parameter
- existingConnection
Typ: System.Data.Common.DbConnection
Eine vorhandene Verbindung mit der Datenbank.
Rückgabewert
Typ: System.Boolean
TRUE, wenn die Datenbank vorhanden ist, andernfalls FALSE.