I have a datatable with fields like so:
ID startdate enddate price
2 03/26/2018 03/27/2018 100
56 03/26/2018 03/27/2018 85
88 03/27/2018 03/28/2018 12
14 03/27/2018 03/28/2018 66
and an array of datarows like so:
[2 03/26/2018 03/27/2018 100,
25 03/27/2018 03/28/2018 66]
How can I remove out of the datatable the rows that lie on the same dates as the datarows but do no have the same IDs as the datarow array?