Quindi stai ricevendo categoryCondition="Apparels, Bluetooth"
scorrendo categoryFilter.Items
Quello che puoi fare qui è sostituire quel ,
con %' or category Like '%
allora tutto andrà bene. considera quanto segue:
If Not String.IsNullOrEmpty(categoryCondition) Then
whereClause = String.Concat(whereClause, joiner, String.Format("category Like '%{0}%'", categoryCondition.Replace(",","%' or category Like '%"))
End If