Zend 框架 TDG 与 Doctrine

发布于 2024-12-29 21:36:56 字数 401 浏览 0 评论 0原文

可能的重复:
何时应使用 Doctrine ORM 以及何时应使用 zend-db-table ?

简而言之,什么更好,为什么?

我目前使用 Zend Framework TDG,但正在考虑转向 Doctrine。

已经从 Zend FW TDG 迁移到 Doctrine 的人能说说这个经历吗? 它是否更好、更快、更灵活?为什么我(和任何人)转向 Doctrine,或者为什么不呢?

提前致谢。

Possible Duplicate:
When should use doctrine ORM and when zend-db-table?

In short, what is better and why ?

I currently using Zend Framework TDG but am considering move to Doctrine.

Could that someone who already moved to Doctrine (from Zend FW TDG) says the experience?
Is it better, faster, more flexible, and why do I have (and anybody) move to Doctrine, or why not?

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

后知后觉 2025-01-05 21:36:56

Doctrine 比 Zend(ORM?)灵活得多。您无法真正比​​较这两者,因为 Zend 必须关注其框架中的许多方面,而 Doctrine 仅关注其“框架”的 ORM/DBAL 方面。从这种方法来看,与 ORM 中的 Zend 相比,Doctrine 总是领先一步。

与 ZF 相比,我喜欢 Doctrine 的一点是你可以非常快速、简单地编写代码,而且非常灵活。像 Doctrine 命令行工具这样的东西可以从实体更新模式,映射到关系和延迟获取,使用 DQL 中的实体(例如'FROM Entity\Donation d WHERE d.user = :user' 和 :user 很简单用户实体对象)

AST 使您可以轻松编写自定义 TreeWalkers 来在转换为 SQL 之前操作 DQL 和查询结构,我在自己的项目 Pike_Grid 中经常使用它。

Doctrine is much more flexible then Zend (ORM?). You cannot really compare those two because Zend has to focus on many aspects in their framework and Doctrine only focusses on the ORM/DBAL side of their 'framework'. From this approach Doctrine will be always one step ahead compared to Zend in ORM.

What I like from Doctrine compared to ZF is you can write code really fast and simple and it's flexibillity. Things like the Doctrine command line tool to update your schema from your entities, mapping to relations and lazy fetching, work with entities in your DQL (e.g.'FROM Entity\Donation d WHERE d.user = :user' and :user is simple a user entity object)

The AST which makes you easy to write custom TreeWalkers to maninpulate DQL and Query structure before converted to SQL, which I use a lot in my own project Pike_Grid.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文