Can someone provide an example of how to define a binding in code for a path that is more than one level deep? For example consider this
//directly setting works
Title = model.Person.FirstName
//binding like this doesn't work
BindingContext = model;
SetBinding(TitleProperty, new Binding("Person.FirstName"));