1

我有具有两种属性的产品文档。适用于每个产品的一般属性和因每个产品类别而异的类别特定属性。

{
  // Product general attributes
  "Title": "",
  "Brand": "",
  "Category",
  ...,

  // Category specific attributes
  "Attributes": [
    {
      "Name": "",
      "Value": ""
    },
    {
      "Name": "",
      "Value": ""
    },
    {
      "Name": "",
      "Value": ""
    },
    ...
  ]
}

“属性”数组中的名称都是不同的。

我的问题是如何在类别特定属性的属性名称上构建方面?

4

1 回答 1

0

您需要将它们作为动态字段输出到索引。请参见此处:http ://ravendb.net/docs/2.0/client-api/advanced/dynamic-fields 然后您需要在要返回的方面指定它们。

于 2013-05-29T09:43:16.060 回答