How to change the following code to one LINQ query :
var items = (from s in db.WfRADocStates.Include(x => x.WfStateStatu)
.Include(xx => xx.WfState)
.Include(xxx => xxx.WfState.Dept)
.Include(d => d.RADoc)
where s.RADocID == docID
&& !s.isHistory
&& s.StatusID == 1
&& s.WfStateStatu.isToNotify
select s).ToList();
foreach (var item in items)
{
EmailHelper.notify(item);
}