nanxia990105
Results
4
issues of
nanxia990105
# Issue ### Short description __Brief description of what happened__ I use Pom dependency down success, but I don’t know how to use it like spring? Please tell me red5...
在 [实体查询](https://www.ktorm.org/zh-cn/entity-finding.html) 中有这样的一段描述 观察生成的 SQL,我们发现 Ktorm 自动使用外键 left join 了 t_employee 的关联表 t_department。这是因为我们在表对象中声明 departmentId 这一列时使用 references 函数将此列绑定到了 Departments 表。在使用序列 API 的时候,Ktorm 会自动递归地 left join 所有关联的表,将部门表的数据一并查询出来,填充到 Employee.department 属性中 在使用了 references 函数来作为一对一join支持中...