EntityConnection コンストラクター (MetadataWorkspace, DbConnection)
[このページは、Entity Framework 6 に関するページです。最新バージョンは、'Entity Framework' NuGet パッケージとして入手できます。Entity Framework の詳細については、msdn.com/data/ef を参照してください。]
指定した MetadataWorkspace と DbConnection を使用して、EntityConnection クラスの新しいインスタンスを初期化します。
名前空間: System.Data.Entity.Core.EntityClient
アセンブリ: EntityFramework (EntityFramework.dll 内)
構文
'宣言
<SuppressMessageAttribute("Microsoft.Reliability", "CA2000:DisposeObjectsBeforeLosingScope", Justification := "Object is in fact passed to property of the class and gets Disposed properly in the Dispose() method.")> _
Public Sub New ( _
workspace As MetadataWorkspace, _
connection As DbConnection _
)
'使用
Dim workspace As MetadataWorkspace
Dim connection As DbConnection
Dim instance As New EntityConnection(workspace, _
connection)
[SuppressMessageAttribute("Microsoft.Reliability", "CA2000:DisposeObjectsBeforeLosingScope", Justification = "Object is in fact passed to property of the class and gets Disposed properly in the Dispose() method.")]
public EntityConnection(
MetadataWorkspace workspace,
DbConnection connection
)
[SuppressMessageAttribute(L"Microsoft.Reliability", L"CA2000:DisposeObjectsBeforeLosingScope", Justification = L"Object is in fact passed to property of the class and gets Disposed properly in the Dispose() method.")]
public:
EntityConnection(
MetadataWorkspace^ workspace,
DbConnection^ connection
)
[<SuppressMessageAttribute("Microsoft.Reliability", "CA2000:DisposeObjectsBeforeLosingScope", Justification = "Object is in fact passed to property of the class and gets Disposed properly in the Dispose() method.")>]
new :
workspace:MetadataWorkspace *
connection:DbConnection -> EntityConnection
public function EntityConnection(
workspace : MetadataWorkspace,
connection : DbConnection
)
パラメーター
- workspace
型 : System.Data.Entity.Core.Metadata.Edm.MetadataWorkspace
この EntityConnection に関連付けられた MetadataWorkspace。
- connection
型 : System.Data.Common.DbConnection
この EntityConnection オブジェクトの基になるデータ ソース接続。
例外
例外 | 状態 |
---|---|
ArgumentNullException | workspace または connection パラメーターが null です。 |
ArgumentException | 概念モデルがワークスペースから見つかりません。または、マッピング ファイルがワークスペースから見つかりません。または、ストレージ モデルがワークスペースから見つかりません。または、接続が閉じた状態ではありません。 |
ProviderIncompatibleException | connection が ADO.NET Entity Framework 互換のプロバイダーからのものではありません。 |