I had the same problem and solved it today by setting these two parameters to false in the DBContext object:
this.ContextOptions.LazyLoadingEnabled = false; this.ContextOptions.ProxyCreationEnabled = false;
This seems to be a serialization issue with proxy creation.
I tried to first match my types with Int32 in the EDMX file, but this gave me very low rates.
Stephane Nov 15 '11 at 10:22 2011-11-15 10:22
source share