如何识别多行 Symony 代码中的 ORM - Propel 调用?
我是 Propel 的新手。我有一个使用 Propel 的项目。我需要识别多行代码中的所有 Propel 调用。该项目是用 Symfony 制作的。
我可以通过什么规格找到所有 Propel 调用?
我的意思是 evrey Propel::getConnection()
只是一个可以在多个 Propel 调用中使用的连接?
或者我是否需要查找每个 new Criteria();
和 [TheObiect]Peer::
?
I am new to Propel. And I have a project using Propel. And I need to identify all Propel calls in many lines of code. The project is made in Symfony.
By what specifications can I find all Propel calls ?
I mean evrey Propel::getConnection()
is just a connections which can be used in multiple Propel calls ?
Or shall I need to look for every new Criteria();
and [TheObiect]Peer::
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这些连接(至少根据我的经验)完全在幕后处理。它们会根据需要自动创建,并在可用时重新使用。因此搜索 Propel::getConnection() 不会有帮助。您至少需要搜索上面列出的内容。即使原始模型对象也有对 Peers 的引用,就像在 ModelObject->save() 中一样。你的目标是什么?
The connections are (in my experience at least) totally handled behind the scenes. They are created automatically if needed and re-used if available. So searching for Propel::getConnection() will not help. You'll need to at least search for what you listed above. Even raw model objects have references to the Peers, like in ModelObject->save(). What is your goal?