我的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 。
答案 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();