-
I'm working with Pakala 2.1.3 and have hit an error. When using the DB.Save(RepObj) function an exception is thrown (Incorrect syntax near the keyword 'WHERE'.). Drilling into the exception, I found this information which may help. _commandText = "UPDATE [dbo].[ControlParms] SET WHERE...
-
Hi, When using the RepositoryRecord templates it is not possible to insert a new record and then update a field: RecordType r = new RecordType(); r.Field1 = "val1"; r.Field2 = "val2"; DB.Save(r); r.Field2 = "new val 2"; DB.Save(r): // This will not update Field2 in the database...