热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

如何在不使用Repo进行软删除的情况下预加载

使用Elixir,Ecto.Repo,Postgres。我通过连接表User在

使用ElixirEcto.RepoPostgres

我通过连接表UserCompanyUserRelations之间建立了关联。我正在为公司的用户在函数中构建动态查询。

在公司架构中,我使用软删除,因此在预加载中,我想排除它们,我可以在预加载中与opts一起使用吗?

dynamic_query
|> Repo.all
|> Repo.preload(include_deleted: false)


您可以显式查询:deleted_at字段:

preload_query =
from c in Company,where: fragment("deleted_at IS NULL")
dynamic_query
|> Repo.all()
|> Repo.preload(preload: [company: ^preload_query])

Based on this gist


推荐阅读
author-avatar
aaa
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有