有没有办法在 BT 映射器中实现以下转换?如果没有,有什么聪明的主意吗?
<Person>
<Age>25</Age>
<Name>Paul</Name>
</Person>
到:
<Person>
<CustomProperties>
<CustomProperty>
<Name>Age</Name>
<Value>25</VAlue>
</CustomProperty>
<CustomProperty>
<Name>Name</Name>
<Value>Paul</VAlue>
</CustomProperty>
</CustomProperties>
我必须在节点列表中聚合一些元素。
提前致谢。