如何使用插件实体框架模型更新数据库

本文关键字:模型 更新 数据库 框架 实体 何使用 插件 | 更新日期: 2023-09-27 17:52:34

我使用TinyMCE为我提供HTML标签作为用户的愿望,所以我将它们存储在数据库中,并稍后在页面的适当部分调用它们。

一切都很好,直到我点击更新按钮,它告诉我更新成功,但我发现它发送回相同的旧数据。

这是我使用的更新语法

int ID1 = int.Parse(Request.QueryString["titelid"]);
        webmarketingEntities wme = new webmarketingEntities();
        articls ar = new articls();
        articls query = (from art in wme.articls
                     where art.id==ID1
                     select art).First();
        ar.articalcontent = txtconteny.Text;
        ar.pagedescription = txtdescription.Text;
        ar.pagetitle = txttitle.Text;
        wme.SaveChanges();

如何使用插件实体框架模型更新数据库

我想到了解决办法:

我应该这样写select语句:

if(!page.postback)
     {
         //your select syntax
     }