2

我有一个自引用实体,我需要在每个级别上 $expand=Other。

预期结果:

{
    Id: 1,
    Other: {...},
    Children: [
        {
            Id: 2,
            Other: {...},
            Children: [...]
        }
    ],
    ...
}

但我不知道如何编写查询。

/odata/Entities/$expand=Children($levels=max),Other产量

{
    Id: 1,
    Other: {...},
    Children: [
        {
            Id: 2,
            Children: [...]
        }
    ],
    ...
}

孩子 (Id: 2) 缺少其他。

4

1 回答 1

3

干得好

/odata/Entities/$expand=Children($levels=max;$expand=Other),Other
于 2015-05-15T14:27:11.063 回答