Ruby on Rails has magic timestamping fields that are automatically updated when a record is created or updated. I’m trying to find similar functionality in Entity Framework. I’ve considered database triggers and a SavingChanges event handler. Is there a more obvious method I’m overlooking?
Ruby on Rails has magic timestamping fields that are automatically updated when a record
Share
I resorted to a SavingChanges event handler. Details on my blog.