Pregunta

I have dataset with two tables: Computers and Hardware. Hardware table has foreign key relation constraint to Computers ID. The problem is I cannot update Hardware table in the database with table adapter. After calling computersTableAdapter.Update(DataSet.Computers) the row states of Hardware changes from Added to Unchanged

This even happens when i set computersTableAdapter.Adapter.AcceptChangesDuringUpdate = false;

¿Fue útil?

Solución

The problem was that i did not set Nested property True on foreign key relation.

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top