diff --git a/Sinvo.EplanHpD.Plugin.Service/MotorLectotypeService.cs b/Sinvo.EplanHpD.Plugin.Service/MotorLectotypeService.cs index ff85951..2f4aa15 100644 --- a/Sinvo.EplanHpD.Plugin.Service/MotorLectotypeService.cs +++ b/Sinvo.EplanHpD.Plugin.Service/MotorLectotypeService.cs @@ -27,7 +27,7 @@ namespace Sinvo.EplanHpD.Plugin.Service public bool SaveMotorLectotypeData(string motorOccId, string data) { var motorData = new MotorDataModel { ID = motorOccId, Data = data }; - var result = DBHelper.DB.Storageable(motorData).WhereColumns(p => p.ID).ExecuteCommand(); + var result = DBHelper.DB.Storageable(motorData).ExecuteCommand(); return result != 0; } }