We are using BreezeJS with an EntityFramework backend. Part of our requirements is that we execute stored procedures on our server during the Breeze SaveChanges. Our problem is that we can't ensure transaction integrity unless we can piggy-back our stored procedure calls into breeze's ambient transaction.
We are unable to perform the operations of the stored procedures through data manipulation because of management.
tldr; can we use breeze's EFContext's transaction scope to execute stored procedures along with the usual SaveChanges