Got it. Thanks for the help guys.
var fullList= from session in mSessions
join testRun in mTestRuns on session.Id equals testRun.SessionId
where session.Value.Username.Team == "whatever"
select new { testRun.Anything };
int count = fullList.Count();
solved Count linq statement with joins