Last night I was dealing with anonymous types and some IL code to creating and assigning values to instances of anonymous types. I stumbled upon this question: How do I declare a Field with Anonymous Type (C#) – http://stackoverflow.com/questions/964334/how-do-i-declare-a-field-with-anonymous-type-c It didn’t have anything to do with what I was doing but the thing I was … Continue reading »
Tagged with json …
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 deserialized to the desired entity. Trying to tweak … Continue reading »
SisoDb – An early prototype
A while back ago I started to fiddle with the CTP of code first in Entity framework 4. The product is great but I wanted something else, I wanted something “more” schemaless. I turned to MongoDB and wrote together an open source driver targeting .Net 4. Still, there was things that I didn’t like so … Continue reading »
SisoDb – First code released
Recently I started playing with Lucene.Net and Json.Net for the reason of creating my own solution for persisting hierarchial-structures of data. The goal is to make it schemaless and really simple. The result was: SisoDb. As of right now it got support for: Commitable Unit of work Insert Update DeleteByKey GetByKey Roadmap My focus in … Continue reading »