Hello Community.!
I created a relationship between two tables (Product and Order).
Product has an ID as a parameter and order has a new_name as a parameter (both primary keys in each table).
How can I create the relationship between the two?
The relationship is of the many-to-many type.
The code that i have to create :
ForAll(
ProductGallery.AllItems,
ForAll(OrderGallery.AllItems,
Relate(
)
)
);