1
我有兩種類型的屬性的產品文檔。適用於每個產品類別的特定屬性的一般屬性,因各個產品類別而異。RavenDB分面搜索:如何構建類別特定屬性的特效
{
// Product general attributes
"Title": "",
"Brand": "",
"Category",
...,
// Category specific attributes
"Attributes": [
{
"Name": "",
"Value": ""
},
{
"Name": "",
"Value": ""
},
{
"Name": "",
"Value": ""
},
...
]
}
'Attributes'數組中的名稱都是不同的。
我的問題是如何建立類別特定屬性的屬性名稱構面?