gpt4 book ai didi

php - 如何使用 Idiorm 和 Paris 仅通过一个查询从关联表中检索信息?

转载 作者:行者123 更新时间:2023-12-04 18:11:22 25 4
gpt4 key购买 nike

我正在使用 Paris (它建立在 Idiorm 之上)。

我有以下模型类(受 documentation on github 启发的示例):

<?php
class Post extends Model {
public function user() {
return $this->belongs_to('User');
}
}

class User extends Model {
public function posts() {
return $this->has_many('Post'); // Note we use the model name literally - not a pluralised version
}
}

所以现在我可以执行以下操作(效果很好):
// Select a particular user from the database
$user = Model::factory('User')->find_one($user_id);
// Find the posts associated with the user
$posts = $user->posts()->find_many();

// Select a particular post from the database
$post = Model::factory('Post')->find_one($post_id);
// Find the user associated with the post
$user = $post->user()->find_one();

但我也想做以下事情:
$posts = Model::factory('Post')->find_many();
foreach ($posts as $post) {
echo($post->user()->find_one()->username); // generates a query each iteration
}

不幸的是,这会为每次迭代创建一个查询。有没有办法告诉 Paris 或 Idiorm 在第一个 find_many 查询中获取相关信息?

您应该如何使用 Paris 检索信息以最大程度地减少查询次数?我不想手动指定连接条件(这就是我使用 Paris 而不是 Idiorm 的原因)

最佳答案

我是 Paris 和 Idiorm 项目的当前维护者。不幸的是,您在这里描述的是自定义查询的案例,而不是 Paris 旨在解决的问题。 Paris and Idiorm 的理念是尽可能地坚持 80/20 原则,而你的用例在 20 中。

知道你最终是如何解决这个问题的会很有趣。

关于php - 如何使用 Idiorm 和 Paris 仅通过一个查询从关联表中检索信息?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12597197/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com