Let a table TabA, with only 3 int columns : TabA (col1,col2,col3)
Let a list L2int, of type list<int c1,int c2> with several items (ex ((1,2),(2,3)....)
I want to use linq methods (or linq query second way) to find from TabA the values of col1 where (col2,col3) is in Liste2int (col3==c3 && col2==c2).
The result should be a list of int ie List.
Thanks for your attention