There seems to be a change with Exposed 0.50.0 whi...
# exposed
c
There seems to be a change with Exposed 0.50.0 which is breaking my statements with lists for row IDs. Example:
Copy code
internal object UserTableDefinition : UUIDTable("user")
Exposed 0.49.0
UserTableDefinition.deleteWhere { UserTableDefinition.id inList id }
Exposed 0.50.0
UserTableDefinition.deleteWhere { UserTableDefinition.id inList ids.map { EntityID(it, UserTableDefinition) } }
Is this expected?
c
Hi @Carter Thanks for bringing this to our attention. The incorrect
inList
overload is being resolved. Here's the YouTrack issue if you'd like to track the fix.
@Carter Version 0.50.1 has been released, which includes a fix for this.
c
Great, thank you!
👍 1
I was just trying the update this morning and can confirm I’m able to compile without issue
🎉 1