AscendingGuidGeneratorGenerateId Method (Object, Object) |
Generates an ascending Guid for a document. Consecutive invocations
should generate Guids that are ascending from a MongoDB perspective
Namespace:
MongoDB.Bson.Serialization.IdGenerators
Assembly:
MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
Syntax public Object GenerateId(
Object container,
Object document
)
Public Function GenerateId (
container As Object,
document As Object
) As Object
abstract GenerateId :
container : Object *
document : Object -> Object
override GenerateId :
container : Object *
document : Object -> Object
Parameters
- container
- Type: SystemObject
The container of the document (will be a
MongoCollection when called from the driver). - document
- Type: SystemObject
The document it was generated for.
Return Value
Type:
ObjectA Guid.
Implements
IIdGeneratorGenerateId(Object, Object)See Also