public IPropertyMappingProvider Visit(CollectionMap collectionMap)
        {
            var result = new CollectionMappingProvider(CreatePropertyMapping(collectionMap, _log), collectionMap.StorageStrategy);

            if (collectionMap.ElementConverterType != null)
            {
                result.ElementConverterType = collectionMap.ElementConverterType;
            }

            return(result);
        }
 internal StorageStrategyPart(CollectionMap collectionMap)
 {
     _collectionMap = collectionMap;
 }