In my class ResultEntity if I do:
ResultEntity
_resultMulti = new List();
I see the following error message:
You are adding your DataGridTextColumns directly as items of the DataGrid, thus you are setting both the Items and ItemsSource property and you can only use one at the same time. Fix your columns configuration by using the Columns attached property:
DataGridTextColumns
DataGrid
Items
ItemsSource
Columns