Posts

Showing posts from May, 2021

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...