I have looked to the ends of the earth for the answer to this question. There is not much info out there on slick 2.0. Below is my code for my Addresses model, how would I h
If you have fields with default values you may try this
addresses.map(c => (c.city, c.stateName, c.street1)) returning addresses.map(_.id) += (city, stateName, street1)
Try
(addresses returning addresses.map(_.id)) += (city, stateName, street1, street2, zip)
haven't tested it, but it is shown here