Freigeben über


ObjectContext-Konstruktor (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 der angegebenen Verbindungszeichenfolge und dem standardmäßigen Entitätencontainernamen.

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

Syntax

'Declaration
<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 ( _
    connectionString As String _
)
'Usage
Dim connectionString As String 

Dim instance As New ObjectContext(connectionString)
[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 ObjectContext(
    string connectionString
)
[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:
ObjectContext(
    String^ connectionString
)
[<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 : 
        connectionString:string -> ObjectContext
public function ObjectContext(
    connectionString : String
)

Parameter

  • connectionString
    Typ: System.String
    Die Verbindungszeichenfolge, die auch den Zugriff auf die Metadateninformationen bereitstellt.

Ausnahmen

Ausnahme Bedingung
ArgumentNullException

connectionString ist NULL.

ArgumentException

connectionString oder Metadaten-Arbeitsbereich ist ungültig.

Siehe auch

Verweis

ObjectContext Klasse

ObjectContext-Überladung

System.Data.Entity.Core.Objects-Namespace