Gaétan Fache
Gaétan Fache
It would be very nice to have a single .netstandard test library using xUnit.net that get used by all platform test project. Then each platform would use the xUnit.runner.device. That...
I would advise you to keep a single `SQLiteConnection` for your app and cache it to take advantage of the type mapping caching strategy. Opening it with the `Create |...
Have a look at the issues, SO
@aherrick You are still using the `SQLiteConnection` in a using block. As I said, just don't. It's very costly. You are adding pressure on the CPU and GC and avoiding...
The example is: take your code as it is, remove the locks and the using blocks everywhere, remove the lines where you `Dispose()` the connection, create a single `SQLiteConnection` property...
The connection pool only implements 1 connection ad far as I can remember so there must be another mechanism that ensures thread safety. On Wed, 13 Mar 2019, 14:35 Marc...