I have a Dictionary<string, string> with a few entries in it. I want to populate my postgresql database with its data.
I could do a for loop and perform one INSERT query at a time, but that looks ugly, and it is probably slow.
I wonder if there is any way to do this at once, how to do that?