Hi,
The following code raises a concurrency error:
Person P = new Person();
P.Id = 3;
P.Select();
P.Vat = 15.67M;
P.Update() // Concurrency exception
Database is MSSQL2005 and table has 3 columns: Id (Integer, auto), Name (String, Max(30)), Vat (Decimal, Precision 18, Scale 4)
Please advise.
Archer