I have a DataGridView binded to a DataTable (DataTable binded to database). I need to add a DataRow to the DataTable
DataGridView
DataTable
DataRow
You have to add the row explicitly to the table
table.Rows.Add(row);