Not sure if my headline explains the im problem well.
In my application, I make service calls -Confirm the list of clients. - create a list of organizations.
Then I will link this customer list to the list in my view.
In my view model, I have the following properties:
IEnumerable<Organisation> Organisations ObservableCollection<Customer> Customers
Organization Properties: OrganizationId, OrganizationName
Customer Properties: CustomerId, OrganizationIdI, CustomerFirstName, CustomerLastName
Inside the Listbox in my view, I want to show the organization name for each client in the list.
How can I relate this to my point of view? I just want the text block to display the organization name for the client.
source share