DbContext ObjectContext
3145 단어 context
DbContext wraps ObjectContext and exposes the most commonly used features of ObjectContext by using simplified and more intuitive APIs. You can access the underlyingObjectContext whenever you need to use features that are not supported by DbContext. For more information, see What’s Not Supported .
[This page is specific to the Entity Framework 4.1 release documentation. The Entity Framework 4.1 is built on top of the Entity Framework 4 included in .NET Framework 4. The Entity Framework 4.1 can be downloaded and installed from the Microsoft Download Center . The Entity Framework 4.1 runtime is also available as a 'Entity Framework' NuGet package .]
Constructs a new context instance around an existing ObjectContext .
Namespace: System.Data.Entity
Assembly: EntityFramework (in EntityFramework.dll)
public DbContext(
ObjectContext objectContext,
bool dbContextOwnsObjectContext
)
Parameters
objectContext
Type:
System.Data.Objects.ObjectContext
An existing
ObjectContext to wrap the new context.
dbContextOwnsObjectContext
Type:
System.Boolean
If set to
true the
ObjectContext is
disposed when the DbContext is disposed, otherwise the caller must dispose the connection.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
WPF의 데이터 컨텍스트 및 자동 연결 소개 - iFour Technolab데이터 소스를 지정하는 몇 가지 방법이 있습니다. 바인딩에 Source 속성을 사용하고 DataContext를 상속할 수 있으며 ElementName 및 RelativeSource 속성도 개체 바인딩에 사용됩니다. ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.