I have class like this:
public class object {
[Key]
int number;
String mystring;
OtherObject anotherobject;
}
WHen i sent this over RIA my silverlight application can see object.number and object.mystring, but not object.anotherobject!!! What should i do?? Please help me.