SQL JOINTURE INTERNE avec une clause where pour LINQ format

Comment puis-je convertir cette requête LINQ?

SELECT company.ticker, company.primary_analyst, 
       personnel.last_name, company.research_associate,
       company.secondary_associate, company.coverage_status
FROM company 
     INNER JOIN personnel ON company.primary_analyst = personnel.dpinitials
WHERE personnel.last_name='marley' AND company.associate='ml'
ORDER BY company.coverage_status

OriginalL'auteur inquisitive_one | 2012-01-05