For each product in my store, I have included the following XML as ExtensionData
<LicensingTiers>
<Min>75</Min>
<Max>99</Max>
</LicensingTiers>
I am using the aspdnsf_GetProducts stored prod to get product information. I have modified the stored proc to also return ExtensionData, but what is returned is the following:
<ExtensionData><LicensingTiers>
<Min>75</Min>
<Max>99</Max>
</LicensingTiers></ExtensionData>
I need to have this render as XML and not text. How can I do this?