I\'m having a Structure like
X={ID=\"1\", Name=\"XX\",
ID=\"2\", Name=\"YY\" };
How to dump this data to a DataGridView o
LINQ is a "query" language (thats the Q), so modifying data is outside its scope.
That said, your DataGridView is presumably bound to an ItemsSource, perhaps of type ObservableCollection or similar. In that case, just do something like X.ToList().ForEach(yourGridSource.Add) (this might have to be adapted based on the type of source in your grid).