Every table in my database has a CreatedDate and LastModifiedDate column. Is there a way in EF to automatically set those columns during INSERT and UPDATE operations respectively?
I am trying to avoid having people try to remember to manually set them in application code, as that's error prone. (And no, I don't want to put triggers on every table.)