共用方式為


EntityDataSource.ContextCreated 事件

定義

EntityDataSource 已完成建立用於搭配實體資料物件使用的 ObjectContext 時發生。

public:
 event EventHandler<System::Web::UI::WebControls::EntityDataSourceContextCreatedEventArgs ^> ^ ContextCreated;
public event EventHandler<System.Web.UI.WebControls.EntityDataSourceContextCreatedEventArgs> ContextCreated;
member this.ContextCreated : EventHandler<System.Web.UI.WebControls.EntityDataSourceContextCreatedEventArgs> 
Public Custom Event ContextCreated As EventHandler(Of EntityDataSourceContextCreatedEventArgs) 

事件類型

備註

處理這個事件,以存取 ObjectContext 控制項用來 EntityDataSource 執行查詢與追蹤變更的 。 此內容物件可以儲存並用於外部 EntityDataSource的後續作業。 是從 ObjectContext 事件傳回的 ContextCreated 取得EntityDataSourceContextCreatedEventArgs。 如需詳細資訊,請參閱 Object Context Life-Cycle Management (EntityDataSource) 。 如需對象內容的詳細資訊,請參閱 身分識別解析、狀態管理和變更追蹤

事件 ContextCreated 可讓您將 已建立的 指派 ObjectContext 給變數,以供 外部 EntityDataSource的後續作業使用。 屬性 EntityDataSourceContextCreatedEventArgs.Context 包含事件中 ContextCreating 已建立的內容。 如果使用者未在事件期間ContextCreating指派內容,則 中包含的EntityDataSourceContextCreatedEventArgs.Context內容實例就是根據、 EntityDataSource.DefaultContainerNameEntityDataSource.ConnectionString 屬性所EntityDataSource建立的內容EntityDataSource.ContextTypeName實例。

適用於