EntityFrameworkExtras provides some useful additions to EntityFramework such as executing Stored Procedures with User-Defined Table Types and Output Parameters.
I'm hoping to use this library with stored procedures which has their own TRY CATCH logic that handles it's own rollbacks. In general, the way around this is to call ExecuteSqlCommand with TransactionalBehavior.DoNotEnsureTransaction. However, as far as I can tell, this library doesn't provide the ability to alter this behavior. Would you be open to a PR where I add this functionality?
I'm hoping to use this library with stored procedures which has their own TRY CATCH logic that handles it's own rollbacks. In general, the way around this is to call
ExecuteSqlCommand
withTransactionalBehavior.DoNotEnsureTransaction
. However, as far as I can tell, this library doesn't provide the ability to alter this behavior. Would you be open to a PR where I add this functionality?