如何通过ADO.NET Entity Framework从数据库更新记录?

时间:2010-10-18 01:31:58

标签: wpf database entity-framework

我的WPF基于桌面的应用程序使用ADO.Net Entity Framework连接到SQL Server数据库。在其中一个窗口中,我有DataGrid来自tbl_users的所有数据,当用户选择其中一行(记录)并点击编辑时,应用程序会打开一个新窗口使用表单,包括用户可以编辑/更新的所有数据。

我的问题是如何通过ADO.NET实体框架将一个表值的更改(更新/编辑)保存到数据库?

以下是一些有助于了解情况的代码段:

1 - 编辑窗口构造函数

public object objToBeEdited;

public WinWorkers_EditWorker(tbl_users userToBeEdited)
{
    this.Title = Glidus.Properties.Resources.WinWorkers_EditWorker_WinName + Glidus.Properties.Resources.WinApp_WinName;
}

2 - 方法更新,不起作用

tbl_users newUser = new tbl_users() //assume inputted values to new ibject
{
    userName = this.WinWorkers_AddEditWorkers_Form_UserName.Text,
    userPassword = this.WinWorkers_AddEditWorkers_Form_Password.Text,
    userAccessLevel = this.WinWorkers_AddEditWorkers_Form_UserAccessLevel.Text
};

//default minimal password length is 4
if (App.IsInputValueMinLenOK(newUser.userPassword, 4))
{
    EntityKey key = App.glidusContext.CreateEntityKey("tbl_users", objToBeEdited);

    if (App.glidusContext.TryGetObjectByKey(key, out objToBeEdited))
    {
        App.glidusContext.ApplyCurrentValues<tbl_users>(key.EntitySetName, newUser);
    }

    try
    {
        App.glidusContext.SaveChanges();
    }
    catch (Exception ex)
    {
        App.UnitedHandleException(ex);
    }

请帮助我,如何从数据库中实现更新ADO.NET记录。

例如,在我的表格中有 James Bond 007 ,在编辑页面后(点击提交页面)我看到 Austin Powers 008

1 个答案:

答案 0 :(得分:2)

要编辑或更新,您可以使用stub entities

Category category = new Category { ID = 5};
Context.AttachTo(“Categories”,category);

Product product = new Product {
     Name = “Bovril”,
     Category = category
};
Context.AddToProducts(product);
Context.SaveChanges();