I have two user business classes: "TravelRequest" (TR) and "TravelRequestCities" (TRC). On the TravelRequest web form, users can input trip details for upcoming business travel, such as the Country, City, and Dates.
When a user submits the TR form, the City data is transferred to the TRC business class, which creates a record for each city entered. The trip data is not stored on the TR business class. Each TRC record also includes the symbolic key linking it to the corresponding TR record. A common scenario involves users visiting multiple cities or countries during a single business trip.
I need to display all the cities and countries submitted on the TR form. However, even though I am using one-to-many relationship where multiple records exist, only the first or last city entered is showing.
I would appreciate any guidance on how I can display all cities/countries from the TRC records, matching the symbolic key to the TR form.


