-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Question] Contracts #3
Comments
@robsontenorio Thanks for watching my talk! To deal with this, I would create a contract (i.e. interface) in the inventory module and the order module can get the product by calling the method. This will cause an additional DB query but we can keep the modules decoupled. |
I really enjoyed your awesome talk during the conference! well done! I am wondering about the same thing, what if we have a model that is having relationships with many other models in different modules. When using Laravel eager loading "i.e. with method" you will get one collection that have all the related properties of other models. So using the explained approach in your presentation, does this mean that we need to create a contract in each related module and get the related model information using those services? |
@ashourms Thank you for watching the talk! Basically, a model shouldn't have relationships with models of different modules. If a module needs to get many different data from other modules, you might want to see if there is a better way to define your domain boundaries. |
Noted! Thanks for your feedback! |
Hi @avosalmon i liked you talk on laracononline of 2year ago. How can i design the relationship in database of this tables in correct way for modules? |
TLDR: you will have additional DB query for each line you want to fetch , just like N+1 According its approach models can’t have relationships outside its module. foreach orderline as line |
But should the db structure change? |
DB structure is the same. The change is about the fetch N+1 thing. |
Thanks |
@inkomomutane Can I have more context about your modules? What kind of interactions would happen between the modules? The solution depends on the problem you are facing. |
Yap. I have 2 modules +---------------------------------+ +-------------------------------+ But the accounts are managed on General Ledger Module |
Nice speak and thanks for sharing!
I got the idea about contracts between modules. But consider this scenario:
The Order module has a OrderLine product_id FK for Inventory and it is great interface usage on your example.
But, by “Laravel way”, to display an OrderLine with product names I would make
OrderLine::with(“product”)->….
It would be a violation ? How do you deal with that ?
The text was updated successfully, but these errors were encountered: