friends! I'm having a problem with getting navigation properties in WCF Data Service in WebGet method.
- I turned off ProxyCreationEnabled and LazyLoadingEnabled
- I have
[DataContractAttribute(IsReference=true)]
and[DataMember]
attributes. - I see filled properties on service side, but I don't see their on client side.
- I created usual WCF service (based on
[ServiceContract]
attribute) and in its client I saw filled properties.
What am I doing wrong? Many thanks!