couchbase Reference to type ‘IBucket’ claims it is defined in ‘Couchbase.NetClient’, but it could not be found
that’s what the compiler says in the last line of this code
var cluster = await Cluster.ConnectAsync(_couchConfig[“ConnectionString”], _couchConfig[“Username”],
_couchConfig[“Password”]);
IBucket b2 = await cluster.BucketAsync(_couchConfig["TravelBucket"]);
var ctx = new BucketContext(b2);
CouchbaseNetClient v3.0.6
Couchbase.Extensions.DependencyInjection v3.0.5.931
Linq2Couchbase v1.4.2
what am I doing wrong?
thanks