<t>After much pulling out of hair I discovered that the foreach loops were the culprits. What needs to happen is to call EF but return it into an IList of that target type then loop on the IList.<br/>
<br/>
Example:<br/>
<br/>
IList clientList = from a in _dbFeed.Client.Include("Auto") select a;<br/>
foreach (RivWorks.Model.NegotiationAutos.Client client in clientList)<br/>
{<br/>
var companyFeedDetailList = from a in _dbRiv.AutoNegotiationDetails where a.ClientID == client.ClientID select a;<br/>
// ...<br/>
}<br/>
<br/>
```</t>