Posts

Showing posts with the label Asp.net MVC Rollback and submit transection Bhavya Patel

How to rollback and commit transection in Asp.net MVC

 Example Of Rollback And Commit Transection In Asp.Net MVC ...  using (var _Context = new IRISDevMultiTenantEntities1())             {                 using (DbContextTransaction dbTransection = _Context.Database.BeginTransaction()) // Create a object of DbContextTransaction                 {                     try                     {                         tblCompany obj = new tblCompany();                         obj.Company_Name = CompanyName;                         obj.Logo_Filename = null;                         obj.Date_Cre...