Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want save history of user changes on DB Records. Changes such as edit records (for example value of FirstName field changed from 'n ' to 'x' by user1 in yyyy/dd/mm") , Delete Records and ... .

please suggest a method to implement this in EF codefirst.

After Edit:
And which one is better?
1.Create one table to save all tables log
2.Create a table for each table in database

share|improve this question
Vote for what is negative? – Hossein Moradinia Aug 13 '12 at 21:03
1  
Similar question here: stackoverflow.com/q/6156818/270591 – Slauma Aug 13 '12 at 21:41
Of Course.But i edit question.please check it... – Hossein Moradinia Aug 13 '12 at 21:46
1  
From what you describe I see only that you need a log table with something like this: Date, User, TableName, RecordIdentifier (PK value probably), ColumnName, OldValue, NewValue, Action (Delete, Insert, Update?). Do you see any benefit in option 2? – Slauma Aug 13 '12 at 21:54
1  
Please accept kirsten g's answer. The answer describes the same idea. – Slauma Aug 13 '12 at 23:27
show 1 more comment

1 Answer

up vote 2 down vote accepted

Override the SaveChanges method.

In your SaveChanges method loop through the entries using ObjectStateManager.GetObjectStateEntries

Then use the ObjectStateEntry CurrentValues.DataRecordInfo.FieldMetadata[].FieldType.Name and the entry.CurrentValues to get the name value pairs

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.