I\'m attempting to use the DataSet designer to create a datatable from a query. I got this down just fine. The query used returns a nullable datetime column from the datab
It seems different with DataTable and Strongly Typed DataTable... Use Like this.
DataSet1.DataTable1DataTable table = new DataSet1.DataTable1DataTable(); table.Merge(adapter.GetData().CopyToDataTable());