Hi,
We have a Product with the Following Price Matrix
37 USD , IsInformative = False
38 USD, IsInformative = True
46 USD, IsInformative = False
44 USD, IsInformative = False
Using a ProductViewModel
Product.Prices will give us a list containing only Prices that are not informative (3)
Product.PriceInformative property will return a PriceViewModel with Price = 0
Is there a way to get the Informative price described in example using the ProductViewModel?
Thank you.