EntityDataSourceContextCreatingEventArgs.Context プロパティ

定義

データ ソースが使用する 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

プロパティ値

データ ソースが使用するオブジェクト コンテキスト。

次の例は、 オブジェクトの変数の ObjectContext 作成と、 オブジェクトの Page プロパティへの 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時間の長いに割り当てることができます。 詳細については、「 オブジェクト コンテキスト Life-Cycle管理 (EntityDataSource)」を参照してください。

適用対象