is there a way to roll back after a db.submitchanges without de need of transactions?
It would be a shame having to run a service special for loggings. Is there an alternative to roll back and not to use that special service?
thanks in advance!
EDIT:
What I really want: I have 2 database interactions I want to do right after each other.
let's say, I want to add something in database table 'Slots'. After submitting this, I can receive the Id, which has been created by the auto-increment.
That Id, I want to use to insert a new log in the database. but when inserting into the logs fail, I want to rollback the action in 'Slots' too..
this is possible with transactions I believe, but it seems I'm not able to do this without getting errors. even when all servers are set to allow them and firewalls are off..