Didn't you run into a bunch of breaking issues? We made some significant changes since 1.5.3?
Try this on one machine ...
Code:
Employees emp1 = new Employees();
emp1.LoadByPrimaryKey(1);
Employees emp2 = new Employees();
emp2.LoadByPrimaryKey(1);
emp1.FirstName = "Wow1";
emp2.FirstName = "Wow2";
emp1.Save();
emp2.Save();
You should get the concurrency error when emp2.Save() is called since we read them both at the same time ... If you don't please post your CREATE TABLE statement for the table in question, we have unit tests in our system that verify that this works. Your column type should be "timestamp".
EntitySpaces |
Twitter |
BLOG | Please honor our Software License