I can't seem to find a way to replace an existing DataTable in a DataSet with a new DataTable. Am I missing something obvious?
Thanks,
Mike
Printable View
I can't seem to find a way to replace an existing DataTable in a DataSet with a new DataTable. Am I missing something obvious?
Thanks,
Mike
Did you try to using Remove method and then Add the new one ?
Heh, no. Thanks, I was missing something obvious. I was looking at members of the DataSet and members of a particular DataTable, but overlooked members of the DataTableCollection. Thanks, Pirate.