DataContext ctx = //...
var acc = from a in ctx.accounts
select a;
currentAccountsList = acc.ToList<account>();
When the page first loads, the CRM service is called normally and the
current accounts are displayed. (I used fiddler to check whether the service
is called). If i delete an account manually in CRM and then refresh the page,
the code is still executed, but the CRM service is not called (verified by
fiddler) and the account that was deleted is still displayed in the list.
Caching is turned off. I would like to know why the service is not being
called.