I get errors when users change values with Unique Key contraints. The example below demonstrates the problem:
ID (PK) DESC(UK)
1 GB
2 USA
Within .Net 2005 application, I change this to:
ID (PK) DESC(UK)
1 USA
2 GB
When I try to write this back to the SQLServer2005 database, I get an error because the UK has been violated. Is there a way to tell either SQLServer or the ORM framework to defer the constraint until the commit?