sorry, had to start a new thread, i marked the other one as done when the problem is far from solved
i used the sample code provided in the help
// [C#]
StreamWriter writer = new StreamWriter("customer.XML");
string customerXml = String.Empty;
customer.WriteXml(out customerXml);
writer.Write(customerXml);
writer.Close();
which is nice because it brought my xml file from 65k to 30k but i see ther eis still a LOT of unwanted data in the xml file
for example:
<AlwaysFetchCommunity>False</AlwaysFetchCommunity>
- <EntityCollectionReference PropertyName="CustomerStagings">
- <CustomerStagings>
- <Entities>
- <Entity CustomerID="86">
<AlwaysFetchCustomerPropertyValuesStaging>False</AlwaysFetchCustomerPropertyValuesStaging>
- <Fields>
- <CustomerID>
<CurrentValue>86</CurrentValue>
<DbValue />
<IsChanged>False</IsChanged>
<IsNull>False</IsNull>
</CustomerID>
the ONLY relevant data in there is the customer ID,
i guess i should rephrase my question,
is there a way to get back a document exactly like the GetMultiAsDataTable that supports children as well.