次の方法で共有


ObjectContext コンストラクター (String, String)

[このページは、Entity Framework 6 に関するページです。最新バージョンは、'Entity Framework' NuGet パッケージとして入手できます。Entity Framework の詳細については、msdn.com/data/ef を参照してください。]

指定された接続文字列およびエンティティ コンテナー名を使用して、ObjectContext クラスの新しいインスタンスを初期化します。

名前空間:  System.Data.Entity.Core.Objects
アセンブリ:  EntityFramework (EntityFramework.dll 内)

構文

'宣言
<SuppressMessageAttribute("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors", Justification := "Class is internal and methods are made virtual for testing purposes only. They cannot be overrided by user.")> _
Protected Sub New ( _
    connectionString As String, _
    defaultContainerName As String _
)
'使用
Dim connectionString As String 
Dim defaultContainerName As String 

Dim instance As New ObjectContext(connectionString, _
    defaultContainerName)
[SuppressMessageAttribute("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors", Justification = "Class is internal and methods are made virtual for testing purposes only. They cannot be overrided by user.")]
protected ObjectContext(
    string connectionString,
    string defaultContainerName
)
[SuppressMessageAttribute(L"Microsoft.Usage", L"CA2214:DoNotCallOverridableMethodsInConstructors", Justification = L"Class is internal and methods are made virtual for testing purposes only. They cannot be overrided by user.")]
protected:
ObjectContext(
    String^ connectionString, 
    String^ defaultContainerName
)
[<SuppressMessageAttribute("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors", Justification = "Class is internal and methods are made virtual for testing purposes only. They cannot be overrided by user.")>]
new : 
        connectionString:string * 
        defaultContainerName:string -> ObjectContext
protected function ObjectContext(
    connectionString : String, 
    defaultContainerName : String
)

パラメーター

  • connectionString
    型 : System.String
    メタデータ情報へのアクセスも可能にする接続文字列。
  • defaultContainerName
    型 : System.String
    既定のエンティティ コンテナーの名前。 このメソッドで defaultContainerName を設定すると、プロパティが読み取り専用になります。

例外

例外 状態
ArgumentNullException

connectionString が null です。

ArgumentException

connectionString、defaultContainerName、またはメタデータ ワークスペースが無効です。

参照

参照

ObjectContext クラス

ObjectContext オーバーロード

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