File tree 1 file changed +4
-5
lines changed
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
85
85
``PipelineDefinitionBuilder.AppendStage()`` method. This syntax supports all stages
86
86
in the aggregation pipeline, but doesn't provide type hints or type safety.
87
87
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:
90
90
91
91
.. code-block:: csharp
92
92
93
93
var pipeline = new EmptyPipelineDefinition<BsonDocument>()
94
- .AppendStage<BsonDocument, BsonDocument, BsonDocument>("{ $unset: " field1" }");
94
+ .AppendStage<BsonDocument, BsonDocument, BsonDocument>("{ $unset: ' field1' }");
95
95
96
96
.. important::
97
97
@@ -332,8 +332,7 @@ to your pipeline.
332
332
333
333
This stage is available only for MongoDB Atlas clusters, and is not
334
334
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>`.
337
336
- :ref:`VectorSearch() <csharp-aggregation-vectorsearch>`
338
337
339
338
API Documentation
You can’t perform that action at this time.
0 commit comments