Implementing Audit Trail for Objects in C#?

前端 未结 5 2124
感动是毒
感动是毒 2020-12-29 15:02

I\'m looking for ideas on how to implement audit trails for my objects in C#, for the current project,basically I need to:

1.Store the old values and new values of a

5条回答
  •  旧巷少年郎
    2020-12-29 15:34

    Question is pretty similar to How do you implement audit trail for your objects (Programming)?

    We've implemented a similar solution, using AOP (aspectJ implementation). Using this particular points can be captured and specific operations can be performed.

    This can be plugged in and plugged off when we like.

    However, our implementation was in J2EE..

    If you really want to do it in the app layer, i would suggest this.

    Hope it helps..

提交回复
热议问题