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 { } else {
var op = selectById(list.first()) var op = selectById(list.first())
(1 until list.size).forEach { (1 until list.size).forEach {
op = op.and(selectById(list[it])) op = op.or(selectById(list[it]))
} }
op op
} }