| |
<mongoCollection variable>.Add | Adds one or more documents into a collection of MongoDB database. |
<mongoCollection variable>.DeleteAll | Deletes all the documents (corresponding to the specified filter) from a collection of a MongoDB database. |
<mongoCollection variable>.DeleteCollection | Deletes a collection from a MongoDB database. |
<mongoCollection variable>.DeleteOne | Deletes a document from a collection in a MongoDB database. |
<mongoCollection variable>.ExecuteCommand | Runs a generic command on a MongoDB collection. |
<mongoCollection variable>.Find | Finds documents in a MongoDB collection. |
<mongoCollection variable>.ModifyAll | Modifies documents in a collection of a MongoDB database. |
<mongoCollection variable>.ModifyOne | Modifies a document in a collection of MongoDB database. |
<mongoDatabase variable>.CreateCollection | Creates a collection in a MongoDB database while specifying the options of this collection. |
<mongoDatabase variable>.DeteleDatabase | Deletes a MongoDB database as well as its collections. |
<mongoDatabase variable>.ExecuteCommand | Runs a generic command on a MongoDB database. |
<mongoDatabase variable>.Info | Returns information about a MongoDB database. |
<mongoGridFS variable>.DeleteFile | Deletes a file identified by its name from a MongoDB file system. |
<mongoGridFS variable>.DeleteFileByID | Deletes a file identified by its identifier from a MongoDB file system. |
<mongoGridFS variable>.GetFile | Retrieves (on the local computer) a file identified by its name and found in a MongoDB file system. |
<mongoGridFS variable>.GetFileByID | Retrieves (on the local computer) a file identified by its identifier and found in a MongoDB file system. |
<mongoGridFS variable>.GetFileInfo | Used to get information about a MongoDB file (gridFS). |
<mongoGridFS variable>.ListFile | Retrieves the list of MongoDB files found in the MongoDB file system (gridFS). |
<mongoGridFS variable>.SendFile | Copies a file from the local computer to a MongoDB file system (gridFS). |