You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Allow values to insert to be passed as array of setters
This lets the columns to be built up dynamically. For example:
var values = [name <- "Alice"]
if shouldSetEmail {
values.append(email <- "[email protected]")
}
if let insertedID = users.insert(values) {
...
}
0 commit comments