コントローラ
[HttpPost]
public ActionResult EditUserProfile(UserProfiles _postedUserProfile)
{
UserProfiles orjinalUserProfile = entity.UserProfiles.Where(x => x.UserId == _postedUserProfile.UserId).Single();
orjinalUserProfile.AboutMe = _postedUserProfile.AboutMe;
orjinalUserProfile.Birthday = _postedUserProfile.Birthday;
orjinalUserProfile.Comments = _postedUserProfile.Comments;
...... // there are lines more
entity.SaveChanges();
return View();
}
上記のようにエンティティを更新しました。でも、このやり方は良くないと思います。のような挿入操作など、行内のエンティティを更新するソリューションはありますかentity.AddToUserProfiles
。
ありがとう。