Hi, I added the Projects example as explained in the blog to the client which works fine. Now, i’m trying to add a linkMultiple with Contacts by changing the Project.json file.
"contacts":{
"type":"linkMultiple"
}
"contacts":{
"type":"hasMany",
"entity":"Contact",
"relationName":"EntityProjectsContacts"
},
The GUI renders fine and I can select multiple contacts. However when saving the record I get an error message. Looking at the table in the DB, I noticed the table „Entity_Project_Contact is missing a few columns (foreign keys). Any ideas? Do I need to configure additional files in order to make this work? If so, which ones? thx
"contacts":{
"type":"linkMultiple"
}
"contacts":{
"type":"hasMany",
"entity":"Contact",
"relationName":"EntityProjectsContacts"
},
The GUI renders fine and I can select multiple contacts. However when saving the record I get an error message. Looking at the table in the DB, I noticed the table „Entity_Project_Contact is missing a few columns (foreign keys). Any ideas? Do I need to configure additional files in order to make this work? If so, which ones? thx
Comment