S
Satish
Hi everyone,
I need some help constructing a linq query on datatables.
I have 2 datatables as follows
RangeTable
MinValue MaxValue
0.00 0.050
0.051 0.10
0.101 0.15
0.151 0.20
......
ValueTable
Value
0.01
0.02
0.06
0.11
0.15
0.16
....
I want to join these 2 tables and find the count for values for each
range like this
MinValue MaxValue Count
0.00 0.050 2
0.051 0.10 1
0.101 0.15 2
Is it possible to write a query to get this result?
Thanks.
I need some help constructing a linq query on datatables.
I have 2 datatables as follows
RangeTable
MinValue MaxValue
0.00 0.050
0.051 0.10
0.101 0.15
0.151 0.20
......
ValueTable
Value
0.01
0.02
0.06
0.11
0.15
0.16
....
I want to join these 2 tables and find the count for values for each
range like this
MinValue MaxValue Count
0.00 0.050 2
0.051 0.10 1
0.101 0.15 2
Is it possible to write a query to get this result?
Thanks.