本文整理匯總了C#中AppContext.Entry方法的典型用法代碼示例。如果您正苦於以下問題:C# AppContext.Entry方法的具體用法?C# AppContext.Entry怎麽用?C# AppContext.Entry使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類AppContext
的用法示例。
在下文中一共展示了AppContext.Entry方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: UpdateUser
public void UpdateUser(UserDetails userdetails)
{
if (userdetails.Id == Guid.Empty)
throw new ApplicationException("User Id empty");
using (var db = new AppContext())
{
var user = (from usr in db.Users where usr.Id == userdetails.Id select usr).FirstOrDefault();
var entry = db.Entry<UserDetails>(user);
entry.CurrentValues.SetValues(userdetails);
db.SaveChanges();
}
}