Hello Friends?
I have a DataTable with Id(int) column(and NameField);
The Id values are:
2 John
3 John2
5 John3
7 No John
9 ...
10 ...
11 ...
My range is [1, 20]
I want to get values 1, 4, 6, 8, 12, 13, 14, 15, 16, 17, 18, 19, 20 (that are not included to Id values Set)
How to organise Linq query?(C#...)
Thank you!