DbProviderServices.DatabaseExists 方法 (DbConnection, Nullable<Int32>, Lazy<StoreItemCollection>)
[此頁面專屬於 Entity Framework 第 6 版。最新版本可從 'Entity Framework' NuGet 套件取得。如需 Entity Framework 的詳細資訊,請參閱 msdn.com/data/ef。]
傳回值,指出給定的資料庫是否存在伺服器上。
命名空間: System.Data.Entity.Core.Common
組件: EntityFramework (在 EntityFramework.dll 中)
語法
'宣告
Public Function DatabaseExists ( _
connection As DbConnection, _
commandTimeout As Nullable(Of Integer), _
storeItemCollection As Lazy(Of StoreItemCollection) _
) As Boolean
'用途
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
參數
- connection
類型:System.Data.Common.DbConnection
與資料庫的連接,此方法會檢查資料庫是否存在。
- commandTimeout
類型:System.Nullable<Int32>
判斷資料庫存在與否所需之任何命令的執行逾時時間。
- storeItemCollection
類型:System.Lazy<StoreItemCollection>
模型中所有存放區項目的集合。 此參數不再用來判斷資料庫是否存在。
傳回值
類型:System.Boolean
如果提供者只能根據連接推算資料庫,則為 true。