Hello, everybody.
I have typed DataSet ( dsMain
), that contains table ( ReferenceCycle
). In the program I make changes in that table, using generated by VS typed table adapter ( taReferenceCycle
) and values seems to gets inserted. And when I'm trying to update database with this - nothing happens. Here's part of my code:
taReferenceCycle.InsertQuerry(newCycle);
taReferenceCycle.Update(dsMain.ReferenceCycle);
dsMain.ReferenceCycle.AcceptChanges();
What am I doing wrong?
Any help would be greatly appreciated :)