Skip to content

Commit c3613dd

Browse files
committed
changing code + checkpint
1 parent 9aa98c6 commit c3613dd

File tree

1 file changed

+29
-1
lines changed

1 file changed

+29
-1
lines changed

source/fundamentals/linq.txt

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,9 @@ object that links to the collection. To create the object, use the ``AsQueryable
6868
as follows:
6969

7070
.. code-block:: csharp
71-
:emphasize-lines: 2
71+
:emphasize-lines: 3
7272

73+
var restaurantsDatabase = client.GetDatabase("sample_restaurants")
7374
var restaurantsCollection = restaurantsDatabase.GetCollection<Restaurant>("restaurants");
7475
var queryableCollection = restaurantsCollection.AsQueryable();
7576

@@ -587,6 +588,33 @@ in the Atlas manual. For more examples about running Atlas Vector Search queries
587588
{+driver-short+}, see :atlas:`Run Vector Search Queries </atlas-vector-search/vector-search-stage/>`
588589
in the Atlas manual and select :guilabel:`C#` from the language dropdown.
589590

591+
$bitAnd
592+
~~~~~~~
593+
594+
The ``$bitAnd`` aggregation stage performs a bitwise AND operation on the list
595+
of arguments. The arguments should be a list of ``NumberInt`` and ``NumberLong`` //check these out
596+
values.
597+
598+
// 2 arguments <-- the example should correspond to the pagewide example
599+
// 3 arguments
600+
601+
602+
// restaurants collection
603+
604+
605+
$bitOr
606+
~~~~~~
607+
608+
609+
$bitNot
610+
~~~~~~~
611+
612+
613+
$bitXor
614+
~~~~~~~
615+
616+
// at the end, add note about the behaviors
617+
590618
Unsupported Aggregation Stages
591619
------------------------------
592620

0 commit comments

Comments
 (0)