Hi -
I'm binding my ListView to a class that contains a list which is a list of another class.
For instance,
When I bind the ListView to an instance of the person class, how could i display specific value for one of the orders on the row that displays for the person class?
Thanks -
I'm binding my ListView to a class that contains a list which is a list of another class.
For instance,
public class Person{ public List<Orders> Orders {get; set;}}public class Orders{ public Guid Id {get; set;} public string {get; set;}}When I bind the ListView to an instance of the person class, how could i display specific value for one of the orders on the row that displays for the person class?
Thanks -