girishnuli wrote:
- What are the fields in the AuditInfo table? Dow we create this table manually in the database?
Hi Girish. The documentation and example only show one way you can do auditing, in that case is into a table called AuditInfo, but you can do whatever you need inside the auditor. You can audit into a text file, for instance. You can send the log to a web service, etc. So LLBLGen only produces the plumbing, you write your audit logic.
girishnuli wrote:
- Can we extend the fields in the AuditInfo table to include username?
You can do your AuditInfo table as you wish, then you refresh the LLBLGen desiger and regenerate the code.
girishnuli wrote:
- Can we store the AuditInfo table in a separate database from the production database.
Yes.
girishnuli wrote:
Do you have any working example/tutorial of the auditing feature that writes to MS SQL Server? This will help us a lot in understanding the auditing functionality better. I did see some references to an exmple project on the website, but could not find a link to it.
Here are the examples: http://llblgen.com/Pages/ListAdditionalDownloads.aspx#6 , There is an Auditing example.