Compartir a través de


ObjectContext (Constructor) (String)

[Esta página es específica de la versión 6 de Entity Framework. La versión más reciente está disponible como el paquete NuGet de Entity Framework. Para más información sobre Entity Framework, consulte msdn.com/es-ES/data/ef].

Inicializa una nueva instancia de la clase ObjectContext con la cadena de conexión y el nombre de contenedor de entidades predeterminado especificados.

Espacio de nombres:  System.Data.Entity.Core.Objects
Ensamblado:  EntityFramework (en EntityFramework.dll)

Sintaxis

'Declaración
<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 _
)
'Uso
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
)

Parámetros

  • connectionString
    Tipo: System.String
    Cadena de conexión, que también proporciona acceso a la información de metadatos.

Excepciones

Excepción Condición
ArgumentNullException

connectionString es NULL.

ArgumentException

connectionString no es válida, o bien el área de trabajo de metadatos no es válida.

Vea también

Referencia

ObjectContext Clase

ObjectContext (Sobrecarga)

System.Data.Entity.Core.Objects (Espacio de nombres)