C# - Parallel deserialization of JSON stored in database
The scenario A while back ago I had to yield entities constructed by deserializing JSON stored in a database. The first solution just opened a simple single result, sequential reader against the database returning a one column result set containing JSON. This was just yield returned after deserializ…
Daniel Wertheim