我不知道我错过了什么,因为无论页面如何调用都会执行相同的page_load,但是当我退出页面而不保存任何内容时,然后返回页面,看起来我的上下文对象无法像我在退出页面之前保存更改时那样检索已使用的值,当我尝试从那里保存时,导致我执行此操作:
无法设置两个对象之间的关系,因为它们附加到不同的ObjectContext对象。
这是我在页面加载中的内容:
public partial class FraisDeplacement : System.Web.UI.UserControl
{
BLL.SessionContext context;
DAL.DBObjects.VersionDemande versionDemande;
protected void Page_Load(object sender, EventArgs e)
{
this.context = (BLL.SessionContext)Session["sessionContext"];
this.Page.LoadComplete += new EventHandler(Page_LoadComplete);
versionDemande = (DAL.DBObjects.VersionDemande)Session["versionDemande"];
}
}
答案 0 :(得分:1)
我也有这个问题,你可能需要这两个功能中的一个:
context.DBAccess.Attach(versionDemande);
或者这个
versionDemande = this.context.DBAccess.ApplyCurrentValues<DAL.DBObjects.VersionDemande>("VersionDemande", versionDemande);
取决于您在页面上创建/检索对象的方式,我建议您先将这些对象放入try catch中,它会帮助您查看失败时发生的事情。