asKtMongo
Instantiates a KtMongo SyncMongoClient using an existing client from the official Kotlin driver.
This method allows taking advantage of the full configuration power of the official client.
Example
import com.mongodb.kotlin.client.coroutine.MongoClient
fun main() = runBlocking {
val client = MongoClient.create(/* … */)
.asKtMongo()
val database = client.database("my-app")
val users = database.collection<UserDto>("users")
println("Users: ${users.count()}")
}Content copied to clipboard
fun <Document : Any> MongoCollection<Document>.asKtMongo(factory: BsonFactory = BsonFactory(this.codecRegistry), propertyNameStrategy: PropertyNameStrategy = PropertyNameStrategy.Default, objectIdGenerator: ObjectIdGenerator = ObjectIdGenerator.Jvm(), type: KType): SyncMongoCollection<Document>(source)
inline fun <Document : Any> MongoCollection<Document>.asKtMongo(factory: BsonFactory = BsonFactory(this.codecRegistry), propertyNameStrategy: PropertyNameStrategy = PropertyNameStrategy.Default, objectIdGenerator: ObjectIdGenerator = ObjectIdGenerator.Jvm()): SyncMongoCollection<Document>(source)
Instantiates a KtMongo SyncMongoCollection using an existing collection from the official Kotlin driver.
Example
import com.mongodb.kotlin.client.coroutine.MongoClient
fun main() = runBlocking {
val client = MongoClient.create(/* … */)
val database = client.database("my-app")
val users = database.collection<UserDto>("users")
.asKtMongo()
println("Users: ${users.count()}")
}Content copied to clipboard
Instantiates a KtMongo SyncMongoDatabase using an existing client from the official Kotlin driver.
Example
import com.mongodb.kotlin.client.coroutine.MongoClient
fun main() = runBlocking {
val client = MongoClient.create(/* … */)
val database = client.database("my-app")
.asKtMongo()
val users = database.collection<UserDto>("users")
println("Users: ${users.count()}")
}Content copied to clipboard
fun <Document : Any> AggregateIterable<Document>.asKtMongo(): SyncMongoAggregateIterable<Document>(source)
Instantiates a KtMongo SyncMongoAggregateIterable using an existing flow from the official Kotlin driver.
Instantiates a KtMongo SyncMongoFindIterable using an existing flow from the official Kotlin driver.