I need to convert the following complicated sql query to Linq in C#:
Select Empleador.NombreComercial as Empresa,
Vacante.Puesto as Vacante, 
Vacante.Actividades, 
COUNT(Vacante.CveVacante) as Visitas 
from Vacante 
LEFT JOIN Empleador on Empleador.CveEmpleador=Vacante.CveEmpleador  
LEFT JOIN VisitaVacante on Vacante.CveVacante = VisitaVacante.CveVacante
GROUP BY Empleador.NombreComercial,Vacante.Puesto, Vacante.Actividades, 
Vacante.CveVacante HAVING COUNT(*) > 1 ORDER BY Visitas DESC
For the moment I already have the following:
var Visitas = (from tvacante in db.VacanteT
                           join tEmpleador in db.EmpleadorT on tvacante.CveEmpleador equals tEmpleador.CveEmpleador
                           join tVisitaVacante in db.VisitaVacanteT on tvacante.CveVacante equals tVisitaVacante.CveVacante
                           select new
                           {
                               Empresa = tEmpleador.NombreComercial,
                               Vacante = tvacante.Puesto,
                               tvacante.Actividades,
                               Visitas = tvacante.CveVacante
                           }).GroupBy( );
How can I add the COUNT(Vacante.CveVacante) as Visitas  and also the 
GROUP BY Empleador.NombreComercial,Vacante.Puesto, Vacante.Actividades, 
Vacante.CveVacante HAVING COUNT(*) > 1 ORDER BY Visitas DESC 
to my linq query? I can't find information about how to complete this. The tables are tvacante, templeador, and tvisitaVacante.
 
    