the table is loaded from the database using OleDbDataReader
System.Data.OleDb.OleDbDataReader rd = cmnd.ExecuteReader(); dt.Load(rd); log_grid.ItemsSource = dt.DefaultView; datagrid already has columns with Russian names
but when it is filled in, in addition to the existing ones, new columns are created with English names corresponding to the columns of the base. How to fill the datagrid only with the values ​​of the base cells?
False, well, we bind the columns we created to the properties of the bound object with handles. - EvgeniyZ