The relational model advocates only one relation with one entity. You could have many relationships but with different entities but only one relation with one entity. If a relationa less model is in use it will cause.
1 - Update analomies
2 - Deletion analomies
3 - Insertation analomies
Given 150 entities, and relationships between them defined at the Form level and not at the Base Tables levels, you have to write enromous code to support them. Further more modifications are very complex and error prone.
Lets say
CUSTOMERS
Customer ID - PK
Customer Name
ORDERS
Order No - PK
Order Date
Customer ID - PK
There is one-to-many relationship between CUSTOMERS & ORDERS. And the relationship is only one. It is not logical to have more than one relationship. Does not make any sense. However the CUSTOMERS table can have another relationship with another table such as
CONTACTS
Contact ID - PK
Contact Name
Contact Telephone Number
CUSTOMER ID - FK
Now CUSTOMERS has one-to-many relationship with ORDERS and CUSTOMERS also has one-to-many relationship with ORDERS as below
Imgaine trying to write code when there are no relationships. To enter a Order for a Customer the code has to look up the in CUSTOMERS TABLE, find the customer and than ORDERS TABLE