zzzprojects / EntityFrameworkExtras

EntityFrameworkExtras provides some useful additions to EntityFramework such as executing Stored Procedures with User-Defined Table Types and Output Parameters.
https://entityframework-extras.net/
MIT License
80 stars 40 forks source link

Calling Stored Procedures with TransactionalBehavior.DoNotEnsureTransaction #17

Closed jhorbulyk closed 4 years ago

jhorbulyk commented 8 years ago

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?