Yes but this are two different things. In my case I want just view a value which were written from a completly different part of the application. If i do this with many-to-one my class looks like
class Person{
public string Name{get;set;}
public string Title{ get{ return title.text} }
private Title title;
}
otherwise it would look like
class Person{
public string Name{get;set;}
public string Title{ get; private set; }
}
I need this in cases where I have another view on the data. So the objectmodel can be different from other parts in the Application. The other parts need to know about the Title class in this point you are right.