EntityDataSourceContextCreatingEventArgs.Context 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取数据源使用的 ObjectContext。
public:
property System::Data::Objects::ObjectContext ^ Context { System::Data::Objects::ObjectContext ^ get(); void set(System::Data::Objects::ObjectContext ^ value); };
public System.Data.Objects.ObjectContext Context { get; set; }
member this.Context : System.Data.Objects.ObjectContext with get, set
Public Property Context As ObjectContext
属性值
数据源使用的对象上下文。
示例
以下示例演示对象的变量Page的ObjectContext创建及其对 Context 对象的 属性的EntityDataSourceContextCreatingEventArgs赋值。
public partial class _Default : System.Web.UI.Page
{
AdventureWorksModel.AdventureWorksEntities objCtx =
new AdventureWorksModel.AdventureWorksEntities();
protected void EntityDataSource2_ContextCreating(object sender,
EntityDataSourceContextCreatingEventArgs e)
{
e.Context = objCtx;
}
}
注解
属性Context可以分配给事件处理程序ContextCreating中长时间运行的 ObjectContext 。 有关详细信息,请参阅 Object Context Life-Cycle Management (EntityDataSource) 。