Couchbase multiple buckets in .NET app.config
Couchbase .Net manual says that I can configure my client in this way: <couchbase><servers bucket="default" bucketPassword=""> <add uri="http://192.168.0.2:8091/pools/default"/> <add uri="http://192.168.0.3:8091/pools/default"/> </servers></couchbase> Is there any way to define sevral buckets in app.config and then switch between them in my app? According to John's suggestion, I used such configuration: <configuration> <configSections> <sectionGroup name="couchbase"> <section name="bucket-1" type="Couchbase.Configuration.CouchbaseClientSection, Couchbase"/> ... <section name="bucket-N" type=