I’m looking for a simple way to persist objects when experimenting and creating mock UIs or services. I already know what ORM I’ll ultimately use later on when producing a releasable product but I don’t want to bother setting it all up at this stage.
I’m looking for something that:
- has low install requirements (ideally, single dll)
- has low setup requirements (no column definitions, no XML mappings, no table creation..)
- has low performance (really just needs to support 1 or 2 concurrent users)
- persists data across application restarts
What I really want, is something like a hashtable that survives application restarts.
What tools would you see appropriate for this? What approaches do you take when you want to persist simple data structures without any muss?
You could just use the framework’s built-in Serialization Support.
In terms of your requirements: