I have written a little application, that require .NET 2.0. I don't want to use latest .NET, so I use DataSet technology.
I generated my DataSet with DataSet wizard, add, modify rows programmatically, but the Delete method (ds.Connections.RemoveConnectionsRow(Row)) is not work. My table name is Connections .

I call Update method too.
I have checked events. ConnectionsRowDeleting was called, and the row is ok in event args. The ConnectionsRowDeleted method was not called.
What did I wrong?