过滤相关集中的相关集

发布于 2024-11-09 14:14:22 字数 374 浏览 0 评论 0原文

我有以下模型结构:

parent Park
子仓库(带Park的外键,related_name = park_warehouses)
child child Issue(foreign key with Warehouse, related_name =Warehouse_issues)

现在我想通过获取每个公园建筑物的问题来过滤并获取公园的问题数量。

我已经尝试过这个 lambda,但它给了我空数组,即使我选择了这个公园的问题和建筑物:

filter(lambda x: park in park.park_warehouses.all(), Issue.objects.all())

I have the following structure of models :

parent Park
child Warehouse(foreign key with Park, related_name = park_warehouses)
child child Issue(foreign key with Warehouse, related_name = warehouse_issues)

now I'd like to filter and get amount of Issues for Park by getting issues of each park's building.

I've tried this lambda but it gives me empty array even though I have both issues and buildings for this park selected :

filter(lambda x: park in park.park_warehouses.all(), Issue.objects.all())

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

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

发布评论

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

评论(1

病毒体 2024-11-16 14:14:22

Issue.objects.filter(warehouse__park=park)

Issue.objects.filter(warehouse__park=park)

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