Hi Bill,
try:
var records = from m in Mgr.Members
from jH in Mgr.JobHistories
where m.SocSecNo == jH.SocSecNo
&& jH.TSFinish == null
select m;
or
var records = mgr.Members
.SelectMany(jH => mgr.Jobhistories, (m, jH) => new { m = m, jH = jH })
.Where((w) => (w.m.SocSecNo == w.jH.SocSecNo && w.jH.TSFinish== null))
.Select(m => m.m);
note that in the latter you will want to have only Distinct results.
Silvio.