¡@

Home 

c# Programming Glossary: answer_nbr

LINQ to SQL using GROUP BY and COUNT(DISTINCT)

http://stackoverflow.com/questions/448203/linq-to-sql-using-group-by-and-countdistinct

DISTINCT I have to perform the following SQL query select answer_nbr count distinct user_nbr from tpoll_answer where poll_nbr 16.. user_nbr from tpoll_answer where poll_nbr 16 group by answer_nbr The LINQ to SQL query from a in tpoll_answer where a.poll_nbr.. query from a in tpoll_answer where a.poll_nbr 16 select a.answer_nbr a.user_nbr distinct maps to the following SQL query select distinct..