Multiple primary keys with Doctrine 1 and Symfony 1?(Doctrine 1 和 Symfony 1 的多个主键?)
问题描述
我已经知道在 Symfony 1 和 Doctrine 1 中不能使用多个主键,但是你们知道有什么好的解决方法吗?
I already know that's not possible to work with multiple primary keys in Symfony 1 and Doctrine 1, but do you guys know any good workarounds?
推荐答案
一种常见的解决方法是在多对多解析器表中添加一个 auto_increment 键,而不是定义关系,只需建立标准的外键关系即可桌子.只要您在两列上都有索引,性能就可以了.
A common workaround is to add an auto_increment key to the many-to-many resolver table, and rather than have defining relationships, just make standard foreign key relationships to the tables. As long as you have an index on the two columns performance will be fine.
这篇关于Doctrine 1 和 Symfony 1 的多个主键?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Doctrine 1 和 Symfony 1 的多个主键?


基础教程推荐
- 如何在 Laravel 5.3 注册中添加动态下拉列表列? 2021-01-01
- 学说 dbal querybuilder 作为准备好的语句 2022-01-01
- 在PHP中根据W3C规范Unicode 2022-01-01
- PHP 类:全局变量作为类中的属性 2021-01-01
- 如何替换eregi() 2022-01-01
- 有什么方法可以用编码 UTF-8 而不是 Unicode 返回 PHP`json_encode`? 2021-01-01
- 如何在 Laravel 中使用 React Router? 2022-01-01
- YouTube API v3 点赞视频,但计数器不增加 2022-01-01
- Cron Jobs 调用带有变量的 PHP 脚本 2022-01-01
- PHP PDO MySQL 查询 LIKE ->多个关键词 2021-01-01