vote up 2 vote down star

Hi

I have a table that looks like the following:

TABLE Foo
{
  Guid Id [PK],
  int A [FK],
  int B [FK],
  int C [FK],
}

And unique constraint over A, B and C.

Now say for example, you insert a row with a fresh PK with with A = 1, B = 1, C = 1.

SubmitChanges(), all happy.

Now you edit the table.

You remove the previous entry, and insert a row with a fresk PK with A = 1, B = 1, C = 1.

SubmitChanges() BOOM! Unique key constraint SQL exception.

From what I can see, it attempts to first insert the new record, and then try to delete the previous one. I can even understand that it is not possible to determine the order this needs to happen.

But what can I do about it? Would making those 3 fields a composite PK (and removing the old one) be a better solution or wont it even work?

For now, the 'solution' is to remove the unique constraints from the DB (but I'll rather not do so).

flag

68% accept rate

1 Answer

vote up 2 vote down

One option would be to create a transaction (either a connection-bound transaction, or a TransactionScope) - remove the record and SubmitChanges, add the record and SubmitChanges, then finally commit the transaction (or roll-back if you blew up).

Note that you can associate a connection-bound transaction through the data-context constructor IIRC. TransactionScope should also work, and is easier to do - but not quite as efficient.

Alternatively, write an SP that does this swap job at the database, and access that SP via the data-context.

link|flag
Unfortunately not so easy. The list is maintained via a BindingList, obtained from an EntitySet bound to a DataGridView. – leppie Apr 28 at 14:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.