Coming from an NHibernate background - I have some auditing columns to reflect who last edited a record, and when that edit occurred.
I've overridden SaveChanges to look for a common base class, and update anything with EntityState.Modified/Added and set these values --
However, I want to cascade updates from child to parent in some cases, so that when I edit child, the audit tracking fields of Parent are also updated.
Does EntityFramework support this in any way?
Thanks