Database.DefaultConnectionFactory プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
注意事項
The default connection factory should be set in the config file or using the DbConfiguration class. (See http://go.microsoft.com/fwlink/?LinkId=260883)
データベース名または接続文字列から を DbConnection 作成するときに使用する接続ファクトリ。
public static System.Data.Entity.Infrastructure.IDbConnectionFactory DefaultConnectionFactory { get; set; }
[System.Obsolete("The default connection factory should be set in the config file or using the DbConfiguration class. (See http://go.microsoft.com/fwlink/?LinkId=260883)")]
public static System.Data.Entity.Infrastructure.IDbConnectionFactory DefaultConnectionFactory { get; set; }
member this.DefaultConnectionFactory : System.Data.Entity.Infrastructure.IDbConnectionFactory with get, set
Public Shared Property DefaultConnectionFactory As IDbConnectionFactory
プロパティ値
- 属性
注釈
これは、データベース名または接続文字列のみを DbContext に DbContext 指定した場合、またはデータベース名または接続が DbContext に指定されていない場合に使用されます。この場合、DbConnection を生成するためにコンテキスト クラスの名前がこのファクトリに渡されます。 既定では、 IDbConnectionFactory 使用するインスタンスは、appSettings の "EntityFramework DefaultConnectionFactory" エントリからアプリケーションの .config ファイルから読み取られます。 構成ファイルにエントリが見つからない場合は、 SqlConnectionFactory が使用されます。 コードでこのプロパティを設定すると、構成ファイル内にある値が常にオーバーライドされます。
適用対象
Entity Framework