Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions source/fundamentals/linq.txt
Original file line number Diff line number Diff line change
Expand Up @@ -805,6 +805,9 @@ The following are some methods supported by the {+driver-long+} implementation o

* - ``Distinct``
- Returns distinct documents that match the specified criteria

* - ``Exists``
- Tests whether a field exists
Comment on lines +808 to +810
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

S: would phrase these more in terms of what the method returns like some of the other methods:

Suggested change
* - ``Exists``
- Tests whether a field exists
* - ``Exists``
- Returns ``true`` if a field exists and false if it does not.


* - ``First``
- Returns the first matching document, and throws an exception if none are found
Expand All @@ -818,6 +821,12 @@ The following are some methods supported by the {+driver-long+} implementation o
* - ``GroupJoin``
- Performs a left outer join to another collection in the same database

* - ``IsMissing``
- Tests whether a field is missing

* - ``IsNullOrMissing``
- Tests whether a field is null or missing

* - ``Max``
- Returns the document with the maximum specified value

Expand Down
Loading