File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -85,13 +85,13 @@ to construct a stage in the Query API syntax. Then, pass the BSON document to th
8585``PipelineDefinitionBuilder.AppendStage()`` method. This syntax supports all stages
8686in the aggregation pipeline, but doesn't provide type hints or type safety.
8787
88- The following code example shows how to add ``$unset``, an aggregation
89- stage without a corresponding builder method, to an empty aggregation pipeline:
88+ The following code example shows how to add the ``$unset`` stage to an empty aggregation
89+ pipeline:
9090
9191.. code-block:: csharp
9292
9393 var pipeline = new EmptyPipelineDefinition<BsonDocument>()
94- .AppendStage<BsonDocument, BsonDocument, BsonDocument>("{ $unset: " field1" }");
94+ .AppendStage<BsonDocument, BsonDocument, BsonDocument>("{ $unset: ' field1' }");
9595
9696.. important::
9797
@@ -332,8 +332,7 @@ to your pipeline.
332332
333333 This stage is available only for MongoDB Atlas clusters, and is not
334334 available for self-managed deployments. To learn more, see
335- :atlas:`Atlas Search Aggregation Pipeline Stages
336- </reference/atlas-search/query-syntax>` in the Atlas documentation.
335+ :ref:`Atlas Vector Search <csharp-atlas-vector-search>`.
337336 - :ref:`VectorSearch() <csharp-aggregation-vectorsearch>`
338337
339338API Documentation
You can’t perform that action at this time.
0 commit comments