Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

During an update command I received the following error:

Operation is not valid due to the current state of the object

I tried to remove one column from the update command and it works fine. This column is a FK that is similar to the other FK that works fine.

This is the code that executes the update:

                ti.NumeroTitolo = titolo.Numero;
                ti.RKTipoTitoloGenereTitolo = titolo.RkTipoTitoloGenereTitolo;
                ti.RKBanca = titolo.RkBanca;
                ti.DataScadenza = titolo.DataScadenza;
                ti.RKTipoEsito = titolo.RkTipoEsito; 
                ti.ImportoTitolo = titolo.ImportoTitolo;

                _dc.SubmitChanges();
share|improve this question
1  
It would be a big help if you included the L2S update statement. – Randy Minder Jan 13 '10 at 16:42

2 Answers

up vote 9 down vote accepted

Check this out: http://social.msdn.microsoft.com/forums/en-US/linqtosql/thread/f9c4a01a-195a-4f2b-a1cb-e2fa06e28b25/

share|improve this answer
+1 thats what I was about to post. Cheers~ – Ben Ziegler Jan 13 '10 at 21:22
3  
Short answer: don't assign to the int foreign key field, but to the association. Not: ti.RKBanca = 12, but ti.Banca = db.Banca.Single( x=>x.RKBanca == 12); – doekman Jul 15 '11 at 10:34

The problem may be caused by a relationship or other constraint. For example if you are attempting to drop a row who's Id is referenced by some other table with a relationship. Perhaps if you post the SQL or LINQ query that is giving the error we can help you more.

share|improve this answer
I had added the code – Salvatore Di Fazio Jan 13 '10 at 17:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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