I have a problem for this scenario
Some External hardware device for passing message to the grid
GridViewRowInfo rowinfo = radGridView1.Rows.AddNew();
rowinfo.Cells[0] = 12 // which is the id
rowinfo.Cells[1] = "Some Values"
someTableAdatper.Update(someDataSet)
Since ID is unique generate, is there way to get that ID+1 auto generate or I have to found out the # of row and + 1 to it?