I've had a couple of accidents recently where db data has been deleted. Even a back up is never entirely up to date so I'm wondering if there's a straight forward way to have LLBLGen write out what its doing to a text file whenever it does something or for selected transactions?
Do you mean you want LLBLGen log any actions (like insert, update, delete) somewhere? Well that is not built-in. You better go on DB LOG, or something made for that. You also could use LLBLGen Pro Auditing to log things.
I think auditing is the way to go indeed. You can also enable tracing and use a custom tracer, but that can be verbose and slower. Auditing is more dedicated to the entity you want to audit.
I was wondering if anyone has any ideas of where to save audited data? (This is for a web app.) The database is obviously out and a single text file would result in a bottle neck and I'm not even sure it would be possible to syncronize a text file on a webfarm...