我正在尝试使用单个值更新来更新用户表,但我无法弄清楚我做错了什么。这就是我所拥有的:
public static void ApplyROB(string ROBread, string userName)
{
using (SERTEntities ctx = CommonSERT.GetSERTContext())
{
// +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
// Audit of the transfer
datUser trUser = new datUserRole();
trUser.ROB = ROBread;
trUser.AccountName = userName;
// Persist update to DB
ctx.SaveChanges();
}
}
我走远了吗?当我点击更新时没有任何反应。我怎么说,其中用户名 = 用户名?我做对了吗?
基本上需要一个简单的:
update datUser set ROB = "Y" where AccountName= "myusername"
在 LINQ 中使用 Context 变得有点复杂
请帮忙。