Say the object is as follows:
string Name
Dictionary<string,bool> Tags
Where tags is dynamic, but there is a list of tags stored in a Collection in the core data object.
I want to be able to display this in a datagrid like so:
Name tag1 tag2 tag3
Bob true true
John true true
I left out false, but that could be in there if needed.
Cheers