I'm really impressed by Dapper micro OR/M, I really would like to use it as a side by side companion of some fully fledged OR/M, and my be evantually in place of it. I did not figure out anyway if there is some strategy to deserialize a hierarchy from db: for example the returned object for a recordset row would depend on a field ( the so called 'discriminator' in NH for example ). Furthermore the hierarchy can split more table via a join, so the type that represent the row will depend on the existence of the record in the other table. Having a hierarchy represented by a mixture of the two strategy above would be something that NH for example does not support, but that exist in the 'relational life'. So the questions:
- does Dapper handle such a scenario ?
- does this scenario wanish the Dapper efforts in term of performance ?
Another topic is caching. Dapper cache for queries is a little to much aggressive, wouldn't be better to have some "session like context" and have a query cache for each session, or would this again offend the main Dapper motivations ?