mongodb MongoDB C#/.NET driver version

The first column lists the driver version(s).

C#/.NET Driver Version MongoDB 2.6 MongoDB 3.0 MongoDB 3.2 MongoDB 3.4 MongoDB 3.6
Version 2.5 ? ? ? ? ?
Version 2.4 ? ? ? ?  
Version 2.3 ? ? ?    

For additional driver versions, see C#/.NET Driver MongoDB Compatibility Reference.

The driver does not support older versions of MongoDB.

.NET Language Compatibility

The following compatibility table specifies the recommended version(s) of the MongoDB C#/.NET driver for use with a specific version of .NET.

The first column lists the driver version(s).

Driver Version .NET 3.5 .NET 4.0 .NET 4.5 .NET Core 1.0 .NET Core 1.1 .NET Core 2.0
Version 2.4     ? ? ? ?
Version 2.3     ? ? ? ?
Version 2.2     ?      
Version 2.0     ?      
Version 1.11 ? ? ?      
Version 1.10 ? ? ?      

For additional driver versions, see .NET Driver Language Compatibility Reference.

https://docs.mongodb.com/ecosystem/drivers/csharp/

原文地址:https://www.cnblogs.com/tianciliangen/p/8317465.html

时间: 2024-10-10 14:47:36

mongodb MongoDB C#/.NET driver version的相关文章

MongoDB Native Node.js Driver

写在前面 最近读<node.js学习指南>,对于mongodb没有介绍太多的工作原理,但是对于一个前端开发者,即使你还没有用过这种数据库也可以让你很好的理解和使用       一本非常好的介绍node.js的书,我一直把他放在触手可及的地方. --Mike Amundsen MongoDB Native Node.js Driver模块是mongodb自带的node的驱动,这个驱动发出的mongodb指令和mongodb客户端发出的指令基本一致. 准备开始- - 1.首先我们应该确保我们的mo

[MongoDB]MongoDB与JAVA结合使用CRUD

汇总: 1. [MongoDB]安装MongoDB2. [MongoDB]Mongo基本使用:3. [MongoDB]MongoDB的优缺点及与关系型数据库的比较4. [MongoDB]MongoDB与JAVA结合使用CRUD 使用起来也相当简单,由于MongoDB是类文件的数据库,所以其操作起来非常方便 首先下载相应的jar包,这里我直接使用Maven自动获取,以下为POM文件中的配置: <dependency> <groupId>junit</groupId> &l

[MongoDB]MongoDB的优缺点及与关系型数据库的比较

汇总: 1. [MongoDB]安装MongoDB2. [MongoDB]Mongo基本使用:3. [MongoDB]MongoDB的优缺点及与关系型数据库的比较4. [MongoDB]MongoDB与JAVA结合使用CRUD 参考:http://www.cnblogs.com/hoojo/archive/2011/06/01/2066119.html 介绍:MongoDB是一个基于分布式文件存储的数据库.由C++语言编写.旨在为WEB应用提供可扩展的高性能数据存储解决方案. 特点:高性能.易部

新vm打开以前的虚拟机报错&quot;Could not get vmci driver version: The handle is invalid.&quot;

错误提示: Could not get vmci driver version: The handle is invalid. You have an incorrect version of driver 'vmci.sys'. Try reinstalling VMware Player. Module 'DevicePowerOn' power on failed. Failed to start the virtual machine. 解决方案: 找到虚拟机的VMX文件xxxx.vmx

MongoDB - MongoDB CRUD Operations, Update Documents

Update Methods MongoDB provides the following methods for updating documents in a collection: Method Description  db.collection.updateOne() Updates at most a single document that match a specified filter even though multiple documents may match the s

MongoDB - Introduction to MongoDB, MongoDB Extended JSON

JSON can only represent a subset of the types supported by BSON. To preserve type information, MongoDB adds the following extensions to the JSON format: Strict mode. Strict mode representations of BSON types conform to the JSON RFC. Any JSON parser c

MongoDB - MongoDB CRUD Operations, Query Documents, Iterate a Cursor in the mongo Shell

The db.collection.find() method returns a cursor. To access the documents, you need to iterate the cursor. However, in the mongo shell, if the returned cursor is not assigned to a variable using the varkeyword, then the cursor is automatically iterat

MongoDB - MongoDB CRUD Operations, Query Documents

Query Method MongoDB provides the db.collection.find() method to read documents from a collection. The db.collection.find() method returns a cursor to the matching documents. db.collection.find( <query filter>, <projection> ) For the db.collec

MongoDB - MongoDB CRUD Operations, Query Documents, Query for Null or Missing Fields

Different query operators in MongoDB treat null values differently. The examples on this page use the db.collection.find() method in the mongo shell. To populate the users collection referenced in the examples, run the following in mongo shell: db.us