2
我想實現像NHibernate.Envers更改日誌的東西。我如何以最優雅的方式實現這一目標?假設我們有博客(名稱)和post(body,createdat)實體。博客有很多帖子。我需要了解博客更改的歷史記錄:NHibernate.Envers實體屬性更改日誌
modified: name changed from 'a' to 'b' added post: body 'example', createdat 24.02.2013 modified: name changed from 'b' to 'c' post modified: body changed from 'example' to 'sample'
謝謝。