views:

88

answers:

1

I have a Dictionary<string,List<string>> I need to present in a SilverLight DataGrid. One column is the key value and the other is the values in the list. The reason for this is due to my object having more than one attribute of the same type assigned to it. The key is the name of the attribute from the db suffixed with number so the dictionary will not have duplicate key issues. the List contains the actual values. I want to display them as seperate objects in the grid. How do I convert the values to display correctly?

A: 

I was trying to use a value converter to change the data for display and with a dynamic parameter input to filter the data with but instead change the layout and flattened the data.

R Kaufman