When inserting into a table that has an identity column, using a data adapter on a form with a data grid view, no insert into the identity column, the insert fails because the identity column is null. What am I missing? Here is the statement:
accountTableAdapter.Update(
this.operationsDataSet.Account);
swirling in .NET