다음을 통해 공유


Database.Exists 메서드

정의

오버로드

Exists()

데이터베이스가 서버에 있는지 여부를 확인합니다.

Exists(DbConnection)

데이터베이스가 서버에 있는지 여부를 확인합니다.

Exists(String)

데이터베이스가 서버에 있는지 여부를 확인합니다. 데이터베이스에 대한 연결은 클래스 설명서에 설명된 것과 동일한 방식으로 지정된 데이터베이스 이름 또는 연결 문자열을 DbContext 사용하여 만들어집니다.

Exists()

데이터베이스가 서버에 있는지 여부를 확인합니다.

public bool Exists ();
member this.Exists : unit -> bool
Public Function Exists () As Boolean

반환

데이터베이스가 있으면 true이고, 그렇지 않으면 false입니다.

적용 대상

Exists(DbConnection)

데이터베이스가 서버에 있는지 여부를 확인합니다.

public static bool Exists (System.Data.Common.DbConnection existingConnection);
static member Exists : System.Data.Common.DbConnection -> bool
Public Shared Function Exists (existingConnection As DbConnection) As Boolean

매개 변수

existingConnection
DbConnection

데이터베이스에 대한 기존 연결입니다.

반환

데이터베이스가 있으면 true이고, 그렇지 않으면 false입니다.

적용 대상

Exists(String)

데이터베이스가 서버에 있는지 여부를 확인합니다. 데이터베이스에 대한 연결은 클래스 설명서에 설명된 것과 동일한 방식으로 지정된 데이터베이스 이름 또는 연결 문자열을 DbContext 사용하여 만들어집니다.

public static bool Exists (string nameOrConnectionString);
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Reliability", "CA2000:Dispose objects before losing scope")]
public static bool Exists (string nameOrConnectionString);
static member Exists : string -> bool
Public Shared Function Exists (nameOrConnectionString As String) As Boolean

매개 변수

nameOrConnectionString
String

데이터베이스 이름이나 데이터베이스에 대한 연결 문자열입니다.

반환

데이터베이스가 있으면 true이고, 그렇지 않으면 false입니다.

특성

적용 대상