Closed hanpera closed 9 years ago
The Method UpdateAll on Table that have 2 columns Primary Key has generated a query like this:
UPDATE [StudyAssumption] SET [IsSponsor] = TEMP.[IsSponsor],[IsCromsource] = TEMP.[IsCromsource] FROM [StudyAssumption] ORIG INNER JOIN [temp_StudyAssumption_635693559224566926] TEMP ON ORIG.[IdStudy] = TEMP.[IdStudy], ORIG.[IdAssumptionType] = TEMP.[IdAssumptionType]
There is a "," instead an "AND in the ON Clause that results in a SQL Server error
Fixed an released in 1.0.1
Thank you for noticing this. Please tell me if the new version didn't fix the problem.
The Method UpdateAll on Table that have 2 columns Primary Key has generated a query like this:
UPDATE [StudyAssumption] SET [IsSponsor] = TEMP.[IsSponsor],[IsCromsource] = TEMP.[IsCromsource] FROM [StudyAssumption] ORIG INNER JOIN [temp_StudyAssumption_635693559224566926] TEMP ON ORIG.[IdStudy] = TEMP.[IdStudy], ORIG.[IdAssumptionType] = TEMP.[IdAssumptionType]
There is a "," instead an "AND in the ON Clause that results in a SQL Server error