I am having an issue exposing my nested object VIA WCF RIA Service.
Example of business objects (not tied to DB)
public class User
{
public string Name { get; set; }
public Product Product { get; set; }
}
The user object will come to my client object, however the product does not. How can I resolve this?