I have a data table called work_database_mainfilters, I need to split this data table in three separate data tables in order to do some advanced filtering, and then I need to merge these three back into one again.
A row can only be in one DataTable at a time. If you want the same data in more than one DataTable, you will have to copy the data into a new DataRow and add the new row instead
and then I’d like to end up with merged data table.
How do I do that? If the row can’t be in two data tables at the same time is it possible to delete my first data table or something? (Sorry for stupid questions)
Hey, what can I do if one of my data table that I want to merge is empty? I get Object reference not set to an instance of an object. error. and I would like this to be ignored