This commit is contained in:
InsanusMokrassar 2022-08-22 01:26:28 +06:00
parent 2c2b364167
commit 1d01b65b5f

View File

@ -12,7 +12,7 @@ interface CommonExposedRepo<IdType, ObjectType> : ExposedRepo {
} else {
var op = selectById(list.first())
(1 until list.size).forEach {
op = op.and(selectById(list[it]))
op = op.or(selectById(list[it]))
}
op
}