Freigeben über


ObjectContext-Konstruktor (String, String)

[Diese Seite bezieht sich auf Entity Framework Version 6. Die neueste Version ist als 'Entity Framework' NuGet-Paket verfügbar. Weitere Informationen zu Entity Framework finden Sie unter msdn.com/data/ef.]

Initialisiert eine neue Instanz der ObjectContext-Klasse mit einer angegebenen Verbindungszeichenfolge und einem angegebenen Entitätencontainernamen.

Namespace:  System.Data.Entity.Core.Objects
Assembly:  EntityFramework (in EntityFramework.dll)

Syntax

'Declaration
<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 _
)
'Usage
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
)

Parameter

  • connectionString
    Typ: System.String
    Die Verbindungszeichenfolge, die auch den Zugriff auf die Metadateninformationen bereitstellt.
  • defaultContainerName
    Typ: System.String
    Der Name des standardmäßigen Entitätencontainers. Wenn der defaultContainerName mit dieser Methode festgelegt wird, ist die Eigenschaft schreibgeschützt.

Ausnahmen

Ausnahme Bedingung
ArgumentNullException

connectionString ist NULL.

ArgumentException

connectionString, defaultContainerName oder Metadaten-Arbeitsbereich ist ungültig.

Siehe auch

Verweis

ObjectContext Klasse

ObjectContext-Überladung

System.Data.Entity.Core.Objects-Namespace