```SomeTable.batchInsert( data = listOf(1,2,3,...
# exposed
d
Copy code
SomeTable.batchInsert(
				data = listOf(1,2,3,4),
				body = {
					this[SomeTable.someColumn] = it
				})
t
Thank you!!!