I made a switch from LINQ to Entity Framework and needed to update my method's. I stumbled upon this issue where I used ExecuteCommand and my intelliSence does not reference any similar substitutes.
dc.ExecuteCommand("update Phases set PhaseID = {0} where TruckID = {1}", PhaseID, TruckID);
What can I use to accomplish this in .Net?