In WinForms i do this:
var fromtable = from a in Table1 select a;
DataGridView.DataSource = fromtable;
And i see data. How make same in wpf application?
If i do like this:
Museum_TrueEntities me = new Museum_TrueEntities();
var test = from a in me.Authors select a;
dataGrid1.ItemsSource = test;
In result DataGrid is empty.