Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1010
Brute force all clear on transactions
posted

I'm intentionally not sending back true in my JsonResult, and this is causing the subsequent action on savechanges to hold onto previous transactions. 

JsonResult result = new JsonResult();
Dictionary<string, bool> response = new Dictionary<string, bool>();
response.Add("Success", false); 
result.Data = response;
return result;

How do I force the transactions to clear after every savechanges/updateUrl call ?