DocumentFilterManager has not been registered with the Couchbase Cluster. Be sure AddLinq is called on $ClusterOptions during bootstrap

Team…

I have used the following code to create a bucket context
var context = new BucketContext(await cluster.BucketAsync(“travel-sample”));
While runing the application getting an error like “DocumentFilter manager has not been registered with the couchbase cluster. Be sure AddLing is called on $ClusterOptions during bootstrap”

Could anyone help me with this

Dotnet SDK 3.2.8 and Linq2Couchbase 2.0.0 used

Able to solve with this block of code
services
.AddCouchbase(options =>
{
Configuration.GetSection(“Couchbase”).Bind(options);
options.AddLinq();
});