For my example:
Code:
mydataset.GetChanges(); //returns also rows with DataRowState.Unchanged mytable1TableAdapter.Update(mydataset.mytable1); //also child's rows are modified to DataRowState.Unchanged, so they will not be updated!!!
mydataset.GetChanges(); //returns also rows with DataRowState.Unchanged mytable1TableAdapter.Update(mydataset.mytable1); //also child's rows are modified to DataRowState.Unchanged, so they will not be updated!!!
Leave a comment: