How do i obtain relationship models (entities i guess called in espo crm)?
coming from Laravel and asp.net core - there u can use the DB ORM to get models straight from models.
Like from model Book - i can do `$book->author` and this way it would return me entire Author model that was assigned to that specific book model.
In espo crm - there is a column `account_id` on Email entity. doing `$email->account` returns `null` even tho in database i see the ID...
NOTE the project is not mine nor i have used espo crm ever. Just trying to understand espo, this project and expend with new integration.
How do i obtain related model data? how does espo crm data flow?
Espo crm documentation is so garbage (at least compared to any other i worked with like Laravel) that finding such info is close to impossible.
coming from Laravel and asp.net core - there u can use the DB ORM to get models straight from models.
Like from model Book - i can do `$book->author` and this way it would return me entire Author model that was assigned to that specific book model.
In espo crm - there is a column `account_id` on Email entity. doing `$email->account` returns `null` even tho in database i see the ID...
NOTE the project is not mine nor i have used espo crm ever. Just trying to understand espo, this project and expend with new integration.
How do i obtain related model data? how does espo crm data flow?
Espo crm documentation is so garbage (at least compared to any other i worked with like Laravel) that finding such info is close to impossible.
Comment