Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
Yes there is. However you have to know the MetaField mapped to that property. Then you can do it like this:
var metaField = MetaField.Load(CatalogContext.MetaDataContext, metaFieldId).Dictionary.OfType<MetaDictionaryItem>();
Maybe I use wrong libraries, but it says that:
OfType<MetaDictionaryItem>();
is not supported.
using Mediachase.Commerce.Catalog; using Mediachase.MetaDataPlus.Configurator;
Hi,
I have a property like:
[BackingType(typeof(PropertyDictionaryMultiple))] public virtual ItemCollection Prop1 { get; set; }
And I need to extract all the posible values for it. Is there any api to call to get such data?