Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
yii ORM 是否可以建立 is-a 关系?
我的关系模式是:
User (username (pk), email) Employee (username (fk)) Boss (username (fk), field1)
对于这种使用带有任何 ORM 的 php 的场景,一般情况下是否有任何最佳实践?
我可以简单地从用户和员工派生,但我认为这行不通,因为系统必须知道实际值存在于哪个表中。
提前致谢
您可以选择如何实现事物。您还可以使用single tableandscenarios来分隔所需的输入和单独的验证。Yii是非常灵活和强大的 ORM,因此您需要开始阅读文档并进一步发展。
single table
scenarios
Yii