How to map an IList<Dictionary<string, string>>
Hi,
I would like to have a structure like this:
Mapping
ID {get;set;}
IList<KeyValuePair<string,string>> Criteria {get;set;}
Criteria
ID{get;set;}
MappingID{get;set;}
FirstCriterion{get;set;}
SecondCriterion{get;set;}
(index{get;set;})
How can I get this keyvaluepair mapped?
2 Posted by Bogdan Ungureanu on 07 Jul, 2010 07:03 PM
Should I use the IDictionary interface?
Support Staff 3 Posted by Paul Batum on 18 Jul, 2010 10:32 AM
Yes you can map an IDictionary. You want to use the "AsMap" method.