MongoCollectionGroup Method (GroupArgs) | 
 Note: This API is now obsolete.
            Runs the group command on this collection.
            
 
    Namespace: 
   MongoDB.Driver
    Assembly:
   MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
Syntax[ObsoleteAttribute("The group command was deprecated in server version 3.4.")]
public virtual IEnumerable<BsonDocument> Group(
	GroupArgs args
)<ObsoleteAttribute("The group command was deprecated in server version 3.4.")>
Public Overridable Function Group ( 
	args As GroupArgs
) As IEnumerable(Of BsonDocument)[<ObsoleteAttribute("The group command was deprecated in server version 3.4.")>]
abstract Group : 
        args : GroupArgs -> IEnumerable<BsonDocument> 
[<ObsoleteAttribute("The group command was deprecated in server version 3.4.")>]
override Group : 
        args : GroupArgs -> IEnumerable<BsonDocument> Parameters
- args
 - Type: MongoDB.DriverGroupArgs
The args. 
Return Value
Type: 
IEnumerableBsonDocumentA list of results as BsonDocuments.
See Also