When selecting multiple members from a hierarchy used in an excel pivot table filter, the resulting mdx query can look like this:
SELECT FROM (
SELECT (
{[Product].[Product Categories].[Category].&[3],[Product].[Product Categories].[Category].&[1]}
) ON COLUMNS
FROM [Adventure Works]
) WHERE ([Measures].[TestMeasure])
Is there any way to resolve the selected product categories using the cube context and the classes provided inMicrosoft.AnalysisServices.AdomdServer ?