Database.Delete 方法 (String)
[此頁面專屬於 Entity Framework 第 6 版。最新版本可從 'Entity Framework' NuGet 套件取得。如需 Entity Framework 的詳細資訊,請參閱 msdn.com/data/ef。]
如果資料庫伺服器上有資料庫則將它刪除,否則不執行任何動作。 與資料庫的連接是使用給定的資料庫名稱或連接字串所建立,如同 DbContext 類別的文件中所述。
命名空間: System.Data.Entity
組件: EntityFramework (在 EntityFramework.dll 中)
語法
'宣告
<SuppressMessageAttribute("Microsoft.Reliability", "CA2000:Dispose objects before losing scope")> _
Public Shared Function Delete ( _
nameOrConnectionString As String _
) As Boolean
'用途
Dim nameOrConnectionString As String
Dim returnValue As Boolean
returnValue = Database.Delete(nameOrConnectionString)
[SuppressMessageAttribute("Microsoft.Reliability", "CA2000:Dispose objects before losing scope")]
public static bool Delete(
string nameOrConnectionString
)
[SuppressMessageAttribute(L"Microsoft.Reliability", L"CA2000:Dispose objects before losing scope")]
public:
static bool Delete(
String^ nameOrConnectionString
)
[<SuppressMessageAttribute("Microsoft.Reliability", "CA2000:Dispose objects before losing scope")>]
static member Delete :
nameOrConnectionString:string -> bool
public static function Delete(
nameOrConnectionString : String
) : boolean
參數
- nameOrConnectionString
類型:System.String
與資料庫連接的資料庫名稱或連接字串。
傳回值
類型:System.Boolean
如果資料庫存在但是已刪除則為 true,否則為 false。