Hopefully the title makes sense, I\'ll do my best to describe my problem.
I\'m currently developing an ASP.NET Web API. In my \"Company\" controller I have a GetComp
The proxy is causing the serializer to attempt to access navigational properties which are no longer available since the context has been disposed.
Try removing the proxy and eager loading from your context when you are querying for objects that will be serialized
context.Configuration.ProxyCreationEnabled = false;
context.Configuration.LazyLoadingEnabled = false;