Npgsql.FSharp
Npgsql.FSharp copied to clipboard
Use async methods all the way
I noticed that creation and destruction is not made with async methods for the async functions in the library. Also the read method have an async overload as well so started using it. I think I have caught all the places where non-async IO methods are used instead of the async method. This made my implementations that use this library work a lot more smoothly when doing database calls.