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.
是否有某种基本方法可以在创建或更新 EF 实体时添加 DateTime.Now() ?
我只是想知道是否有一种聪明的方法可以解决这个问题,而不必更改整个应用程序中的每个 CRUD 语句。
谢谢。
我已经为这个问题的任何未来访问者写了一篇博客文章。我使用基本实体将列添加到所有实体,然后覆盖SaveChanges()以注入时间。
SaveChanges()
http://benjii.me/2014/03/track-created-and-modified-fields-automatically-with-entity-framework-code-first/