DocumentDB has a project, albeit an example, in C # that I work in FSharp. One of the first tasks is to find an existing database. C # code is
var database = client.CreateDatabaseQuery().Where(db => db.Id == "FamilyRegistry").ToArray().FirstOrDefault();
I am trying to make the same line in FSharp, but I am not getting. Even if I reference the same libraries. Instead, I get the following:

I think the problem is wrong? Thanks in advance.
source
share