标签: asp.net-mvc entity-framework c#-4.0
我想在不从Entity Framework中的数据库获取的情况下更新记录。有没有办法做到这一点?
我想要与
update dbo.person set firstname = 'ali' where id = 50
我不想运行动态查询?
我正在寻找纯粹的Entity Framework方法..