If I use a DataTable
DataGrid1.DataSource = DataSet1.Tables(0)
it displays all rows and column from the table.

If I use a DataRowArray
DataGrid1.DataSource = DataSet1.Tables(0).Select()
it displays only 2 colums RowError and HasErrors
the rowcount is the rowcount from the table but RowError is in all rows
blank and HasErrors is in all rows "False"

Why does it not display the same output?


Thanks