如何使用Entity Framework从表中选择特定记录?

时间:2013-09-12 19:58:00

标签: c# sql entity-framework

我正在使用Entity Framework在数据库中插入数据。这是我的应用程序http://prikachi.com/images/681/6555681G.jpg中的表格。我想要做的是当我单击“编辑”以选择具体记录并可以选择按照此处http://www.codeproject.com/KB/library/363040/updatedelete.jpg的方式编辑或更新它。我正在使用Visual Studio 2012,C#。

    protected void Page_Load(object sender, EventArgs e)
    {

    }

    protected void Button1_Click(object sender, EventArgs e)
    {
        using (var db1 = new beeContext())
        {
            var Article = new Articles1()
            {
                Author = TextBox1.Text,
                Title=TextBox2.Text,
                Text=TextBox3.Text,
                Category=TextBox4.Text
            };

            db1.Articles1.Add(Article);
            db1.SaveChanges();
        }


        Label5.Visible = true;
        GridView1.DataBind();
    }


}

ASP.net 我无法发布表格的截图,但没有什么特别的 - 它们之间甚至没有关系 - 整个应用程序只是填充数据库。

1 个答案:

答案 0 :(得分:0)

您只需修改从dbContext检索的实体,然后调用dbContext.SaveChanges()