次の方法で共有


DbProviderServices.DbDatabaseExists メソッド (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 内)

構文

'宣言
Protected Overridable Function DbDatabaseExists ( _
    connection As DbConnection, _
    commandTimeout As Nullable(Of Integer), _
    storeItemCollection As Lazy(Of StoreItemCollection) _
) As Boolean
'使用
Dim connection As DbConnection 
Dim commandTimeout As Nullable(Of Integer)
Dim storeItemCollection As Lazy(Of StoreItemCollection)
Dim returnValue As Boolean 

returnValue = Me.DbDatabaseExists(connection, _
    commandTimeout, storeItemCollection)
protected virtual bool DbDatabaseExists(
    DbConnection connection,
    Nullable<int> commandTimeout,
    Lazy<StoreItemCollection> storeItemCollection
)
protected:
virtual bool DbDatabaseExists(
    DbConnection^ connection, 
    Nullable<int> commandTimeout, 
    Lazy<StoreItemCollection^>^ storeItemCollection
)
abstract DbDatabaseExists : 
        connection:DbConnection * 
        commandTimeout:Nullable<int> * 
        storeItemCollection:Lazy<StoreItemCollection> -> bool  
override DbDatabaseExists : 
        connection:DbConnection * 
        commandTimeout:Nullable<int> * 
        storeItemCollection:Lazy<StoreItemCollection> -> bool
protected function DbDatabaseExists(
    connection : DbConnection, 
    commandTimeout : Nullable<int>, 
    storeItemCollection : Lazy<StoreItemCollection>
) : boolean

パラメーター

  • commandTimeout
    型 : System.Nullable<Int32>
    データベースの存在を確認するために必要なすべてのコマンドの実行タイムアウト。
  • storeItemCollection
    型 : System.Lazy<StoreItemCollection>
    モデルからのすべてのストア アイテムのコレクション。 このパラメーターは、データベースの存在の確認用にもはや使用されません。

戻り値

型 : System.Boolean
プロバイダーが、接続のみに基づいてデータベースを推測できる場合は true。

解説

ストア アイテムのコレクションが不要な場合は、このメソッドをオーバーライドして作成しないようにします。 既定の実装では遅延を評価し、このメソッドの他のオーバーロードを呼び出します。

参照

参照

DbProviderServices クラス

DbDatabaseExists オーバーロード

System.Data.Entity.Core.Common 名前空間