Closed
Description
Hi!
I use couch db database with multiple models from F#, I was wondering:
- How to add work with a different serializer (because F# serialized bit weird)?
- How to work with different documents in the same db?
I assume I can use diff "databases" that are the same but with different TSource.:
var rebels = client.GetDatabase<Rebel>("StarWars");
var clones = client.GetDatabase<Clone>("StarWars");