I want to get a ProductCollection based on the value of grandchild values.
Using the code below, I can look up child values:
ProductCollection product = new ProductCollection();
RelationCollection relations = new RelationCollection();
relations.Add(ProductEntity.Relations.ProductTypeOptionAttributeCombinationEntityUsingProductId);
IPredicateExpression filter = new PredicateExpression();
filter.Add(_Child Field Value_);
product.GetMulti(filter, 0, null, relations);
But what do I do if I want to filter on a child of the ProductTypeOptionAttributeCombinationEntity?
Many thanks
Darren
P.S. Yeah I know I need to re-consider the name of that table and make it shorter!!!