Hello,
You can use the
GetSKUOptionCategories method. Please take a look at following code snippet that demonstrates the method:
DataSet ds = OptionCategoryInfoProvider.GetSKUOptionCategories(100, null);
if (!DataHelper.DataSourceIsEmpty(ds))
{
string options = String.Join(";", SqlHelperClass.GetStringValues(ds.Tables[0], "CategoryName"));
}
Best regards,
Michal Legen