Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的 Web 应用程序中使用 EF4。
目前,当我想保存特定项目时,我会更改其属性,然后调用SaveChanges().
SaveChanges()
但是随后应用程序中的所有更改都已提交。
如何仅提交特定项目的更改?
创建一个新上下文并将您的特定项目附加到这个新上下文。然后调用SaveChanges()新的上下文。