If I have an object with multiple properties and I want to bind that object to the SfPicker control but then show only 1 of the property values in the list... how do I do that?
For example if I have this class:
public class Person
{
public string FirstName { get; set; }
public string LastName { get; set; }
}
and then I have this list defined:
List<Person> persons = new List<Person>();
....
....
....
How do I bind persons to the picker control and display only the LastName?