ISetWindowFieldsPartitionExtensionsCountTInput Method |
Returns the number of documents in the window.
Namespace:
MongoDB.Driver.Linq
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
Syntax public static long Count<TInput>(
this ISetWindowFieldsPartition<TInput> partition,
SetWindowFieldsWindow window = null
)
<ExtensionAttribute>
Public Shared Function Count(Of TInput) (
partition As ISetWindowFieldsPartition(Of TInput),
Optional window As SetWindowFieldsWindow = Nothing
) As Long
[<ExtensionAttribute>]
static member Count :
partition : ISetWindowFieldsPartition<'TInput> *
?window : SetWindowFieldsWindow
(* Defaults:
let _window = defaultArg window null
*)
-> int64
Parameters
- partition
- Type: MongoDB.DriverISetWindowFieldsPartitionTInput
The partition. - window (Optional)
- Type: MongoDB.DriverSetWindowFieldsWindow
The window boundaries.
Type Parameters
- TInput
- The type of the input documents in the partition.
Return Value
Type:
Int64The maximum of the selected values.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
ISetWindowFieldsPartitionTInput. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also