Click here to Skip to main content
15,887,135 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
For people coming from SOAP/WSDL services background will find it hard to grasp some of the concepts of WCF RIA service initially. Say for example if you got an web service operation similar to this on your .asmx or WCF service

public Employee GetEmployee()

when you generate the proxy classes, the client side will be able to view all the properties of the type Employee.

Example:

emp.Manager //Complex type

emp.FirstName // simple type string

But the same operation (with similar notion like IQuerable) from WCF RIA service won't let the client to access all the properties, only basic types like (int, string, bool etc) will be visible. So, if you try to access emp.Manager it will throw compile time exceptions.


Please help me in this point.
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900