public EnumDictionaryMapper(ReadOnlyProperty <T> property) { _property = property; }
public ObjectDictionaryMapper(ReadOnlyProperty <T> property, IDictionaryConverter converter) { _property = property; _converter = converter; }
public ValueValueDictionaryDictionaryMapper(ReadOnlyProperty <T> property) { _property = property; }
public ObjectArrayDictionaryMapper(ReadOnlyProperty <T> property, IDictionaryConverter elementConverter) { _property = property; _elementConverter = elementConverter; }