Biztalk maps: Grouping different nodes into a list
- by pablocastilla
Hello,
Is there a way of achieve the following transformation in the BT mapper? if not, any smart idea?
<Person>
<Age>25</Age>
<Name>Paul</Name>
</Person>
to:
<Person>
<CustomProperties>
<CustomProperty>
<Name>Age</Name>
<Value>25</VAlue>
</CustomProperty>
<CustomProperty>
<Name>Name</Name>
<Value>Paul</VAlue>
</CustomProperty>
</CustomProperties>
I have to aggregate a few elements in a list of nodes.
Thanks in advance.