Omnissiah
How and what to Test
you could have low level single class tests up to high level integration tests, but i mean if you want to learn on the argument if you look maybe not courses but even only introductory videos at least you would have some basic knowledge about it
14 replies
Threading and Microsoft.Data.Sqlite
Lazy<T> is no thread safe, it has a parameter in the constructor for that
either that or you put a synchronization primitive in the lazy method
but even before that i would in general reconsider using lazy or in general having db in multiple threads
like, do you really need this, are you sure
25 replies