How can i best implement an audit trail for an application that uses Telerik open access. I have posted this question on their support but there has been no reply for days (sucks) I have already tried the Tracking events within each scope but am unable to save the field that contain List or class attributes. (open access does not support the object datatype) Example of the class am trying to implement an audit trail for is

class myCompany
{
    private int _id;
    private IList<Bus> _myBusses=new List<bus>();
    private User _createdBy;
}

Plesase Help

link|improve this question

69% accept rate
feedback

1 Answer

OpenAccess provides a way of logging all activity that is performed. Have a look at this help article for more information.

You can also plug into the change tracking and log everything at object level.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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