我看到here您可以在创建集合时为字符串启用范围索引。这是你如何做的
DocumentCollection collection = new DocumentCollection { Id = "myCollection" };
collection.IndexingPolicy = new IndexingPolicy(new RangeIndex(DataType.String) { Precision = -1 });
collection.IndexingPolicy.IndexingMode = IndexingMode.Consistent;
await client.CreateDocumentCollectionAsync(UriFactory.CreateDatabaseUri("db"), collection);
我想知道是否有办法在Azure门户网站上创建它,并且已经创建了集合。
感谢。