My requirement is to update UpdatedDate property of the object whenever ObjectContext.SaveChanges
method is called and for this I tried to attach event handler for savechanges event where I want to find the object that is being updated and update its UpdateDate property, but I am not finding the way to find the object that is getting updated.
Any idea? Am I doing the correct thing to achieve my requirement?