Is it possible to append multiple properties when binding a label's Text property in a custom view cell?
label.SetBinding(Label.TextProperty, "Property1")
label.SetBinding(Label.TextProperty, "Property2")
label.SetBinding(Label.TextProperty, "Property3")
How do you combine them all? I could create a separate combined property in the POCO object, but I'm wondering if there is another way.