I have array number = {2,3,4,5,6}
Now i have to select rows from table "dtlRecord" where this number is a column.
Number count 2 10 3 23 4 20
So what i need is
select sum(count) from dtlRecord where number in (2,3,4,5,6) group by number
I need above query in LINQ to SQL