I have a strongly typed dataset with a strongly typed datatable which i pass to my wcf service. I have added an extra column runtime on this table which is not in the xsd.
When i debug on the server side the wcf operation receives the dataset and datatable, but the extra column and its value isn't a part of it anymore.
I think it has something to do with the serialization of the dataset, but how can I solve this problem without strongly type the column?
thanks in advance