Performing Bulk Updates with Ecto And Elixir

Updating one database row in Ecto is straightforward. But figuring out how to bulk update rows using Ecto without updating one record at a time? Now that is a pain. What if there were a way to bulk update rows of data in your database using only ONE update call? Well, there is, and in this post, I'll show you how you can do it using Ecto without having to write a single line of SQL. Ecto update/2...