Tagged Questions
3
votes
1answer
176 views
LINQ query using join and aggregate functions
Urgh...my LINQ has suddenly taken a turn for the worse!!
I have two tables and want to join and perform aggregate functions upon the tables.
Firstly, is this possible, I am assuming it is, and ...
0
votes
1answer
829 views
how to translate the SQL code “having” condition into LinqToSQL or LinqToEntites?
Could you tell me how to translate the following SQL code to Linq To SQL or Linq To Entites?
The correst SQL code is:
select CollectId,url,userid,pubtime
from Collect group by
...