I have a DataTable
with around 30 columns it can be very large, one is called id.
In a other List I have 4 columns. I'm thinking of putting it in a DataTable
but I'm not sure whats best.
name, id2, month, week
I want to know where id == id2
and what the month
is at that id2
.
The both id
and id2
are strings
not numbers.
Anyone have a good idea on how to do this the best/fastest way?