After I migrated the WCF5.0 application to integrate with azure, I cannot use oData 3 api with azure table storage. I got this error -
The type "System.Data.Services.Client.DataServiceResponse" is defined in an assembly that is not referenced. You must add a reference to the assembly 'System.Data.Services.Client, Version = 3.5.0.0, Culture = Neutral, PublicKeyToken = b77a5c561934e089'.
The type "System.Data.Services.Client.DataServiceContext" is defined in an assembly that is not referenced. You must add a reference to the assembly 'System.Data.Services.Client, Version = 3.5.0.0, Culture = Neutral, PublicKeyToken = b77a5c561934e089'.
After adding System.Data.Services.Client.dll
in my project, the problems go away, but I can not use oData 3.0.
user1391380
source share