I had a problem opening my VIA WCF RIA Service nested object.
An example of business objects (not tied to a database)
public class User { public string Name { get; set; } public Product Product { get; set; } }
A custom object will appear on my client object, however the product does not. How can i solve this?
Pawan source share