我在 RavenDB 中有一些带有属性集合的文档,我想使用索引对其进行展平。
文档结构类似于:
{
"Id": "test/1",
"Name": "Some name",
"Attributes": [
{ "Key": "FirstAttr", "Value": "FirstValue" },
{ "Key": "SecondAttr", "Value": "SecondValue" }
]}
我想要的输出是:
{
"Id": "test/1",
"Name": "Some name",
"FirstAttr": "FirstValue",
"SecondAttr": "SecondValue"
}
这在 RavenDB 中可行吗?
非常感谢!