我似乎无法使以下代码正常工作。
我想使用以下代码
db.Entry(user).Property(x => x.Password)
代替
db.Entry(user).Property("Password")
这是来自答案的代码片段,可以在此处找到Link。
public void ChangePassword(int userId, string password)
{
var user = new User() { Id = userId, Password = password };
using (var db = new MyEfContextName())
{
db.Users.Attach(user);
db.Entry(user).Property(x => x.Password).IsModified = true;
db.SaveChanges();
}
}
我目前的用途
using System;
using System.Collections.Generic;
using System.Data.Entity;
using System.Linq;
using System.Linq.Expressions;
using System.Data.Entity.Infrastructure;