Table of Contents
1.增
2.删
3.查
Home Database Mysql Tutorial MongoDB的增删改查

MongoDB的增删改查

Jun 07, 2016 pm 04:32 PM
mongodb study

本文是对mongodb学习的一点笔记,主要介绍最简单的增删改操作,初学,看着API,有什么错误,希望大家指正:(使用官方驱动) 1.增 增加操作是最简单的,构造bsonDcument插入即可: 方式1,直接构造: MongoServer dbserver = new MongoClient(connectionStr)

本文是对mongodb学习的一点笔记,主要介绍最简单的增删改操作,初学,看着API,有什么错误,希望大家指正:(使用官方驱动)

1.增

增加操作是最简单的,构造bsonDcument插入即可:

方式1,直接构造:

MongoServer dbserver = new MongoClient(connectionStr).GetServer();
            MongoDatabase db = dbserver.GetDatabase(dbName);
            MongoCollection collection = db.GetCollection(collectionName);
            dbserver.Connect();
            BsonDocument doc = new BsonDocument();
            doc["Age"] = Int32.Parse(txt_Age.Text);
            doc["Name"] = txt_Name.Text;
            doc["Num"] = txt_Num.Text;
            doc["Introduction"] = txt_Introduction.Text;
            collection.Insert(doc);
Copy after login

方式2,通过实体构造:

1  var student = new Student
2  {
3       Age = Int32.Parse(txt_Age.Text),
4       Name = txt_Name.Text,
5       Num = txt_Num.Text,
6       Introduction = txt_Introduction.Text
7   };
8             
9  collection.Insert(student);
Copy after login

2.删

关键就是构造删除条件,通过api查到Remove方法的签名:public virtual WriteConcernResult Remove(IMongoQuery query);在网上看到好多写法都是在Remove中传入BsonDocument对象,但是我查源码发现bsonDocument根本没有实现IMongoQuery接口,实现这个接口的是一个叫做QueryDocument的类,同时QueryDocument也继承了BsonDocument对象,而构造BsonDocument和QueryDocument的方式超级多,各种方便,简单写几种:

比如构造如下条件,delete from table where?Age>15 &Age

相应的mongodb条件写法:{Age:{$gt:15,$lt:20}},下面就来构造这个条件;

方式1,直接通过bsonDocument构造:

BsonDocument doc = new BsonDocument
{
    { "Age",new BsonDocument{{"$gte",10},{"$lte",15}}}
};
Copy after login

方式2,直接通过QueryDocument构造:与1类似

1  QueryDocument query = new QueryDocument
2  {
3      { "Age",new QueryDocument{{"$gte",10},{"$lte",15}}}
4  };
Copy after login

方式3,直接通过反序列化json字符串:

1  string json = "{ Age:{$gte:10,$lte:15}}";
2  var queryJson = BsonSerializer.Deserialize(json, typeof(BsonDocument)) as BsonDocument;
Copy after login

个人觉得这种方式挺好,如果你mongodb命令熟悉,这种方式挺适合构造复杂条件的

方式4:通过Query类,Query是静态类,封装了各种逻辑条件方法,有泛型和泛型两种方式:

1  var query1 = Query.GT("Age", 10);//大于10;greater than 10
2  var query2 = Query.LT("Age", 15);//小于15;less than 15
3  var query = Query.And(query1, query2);
Copy after login

但是更好的要数泛型方式了:

var query1 = Query.GTE(t => t.Age, 10);
 var query2 = Query.LTE(t => t.Age, 15);
 //var query = Query.And(Query.GTE("Age", 10), Query.LTE("Age", 15));
 var query = Query.And(query1, query2);
Copy after login

最后执行Remove方法即可;

3.查

数据显示是必不可少的,查询操作中的条件过滤在删除中已说过,不再赘述,这里先写两种方式(ps:现在了解太浅,只能以笔记形式记录下)

方式1:通过FindAllAs方式或者FindAs方法

1  var query1 = Query.GTE(t => t.Age, 10);
2  var query2 = Query.LTE(t => t.Age, 15);
3  var query = Query.And(query1, query2);
4           
5  var list = collection.FindAs(typeof(Student), query);
Copy after login

方式2:通过linq

1   var qList = (from c in collection.AsQueryable()
2                      where c.Age > 10 && c.Age 

    <p class="copyright">
        原文地址:MongoDB的增删改查, 感谢原作者分享。
    </p>
    
    


Copy after login
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Which version is generally used for mongodb? Which version is generally used for mongodb? Apr 07, 2024 pm 05:48 PM

It is recommended to use the latest version of MongoDB (currently 5.0) as it provides the latest features and improvements. When selecting a version, you need to consider functional requirements, compatibility, stability, and community support. For example, the latest version has features such as transactions and aggregation pipeline optimization. Make sure the version is compatible with the application. For production environments, choose the long-term support version. The latest version has more active community support.

The difference between nodejs and vuejs The difference between nodejs and vuejs Apr 21, 2024 am 04:17 AM

Node.js is a server-side JavaScript runtime, while Vue.js is a client-side JavaScript framework for creating interactive user interfaces. Node.js is used for server-side development, such as back-end service API development and data processing, while Vue.js is used for client-side development, such as single-page applications and responsive user interfaces.

Where is the database created by mongodb? Where is the database created by mongodb? Apr 07, 2024 pm 05:39 PM

The data of the MongoDB database is stored in the specified data directory, which can be located in the local file system, network file system or cloud storage. The specific location is as follows: Local file system: The default path is Linux/macOS:/data/db, Windows: C:\data\db. Network file system: The path depends on the file system. Cloud Storage: The path is determined by the cloud storage provider.

What are the advantages of mongodb database What are the advantages of mongodb database Apr 07, 2024 pm 05:21 PM

The MongoDB database is known for its flexibility, scalability, and high performance. Its advantages include: a document data model that allows data to be stored in a flexible and unstructured way. Horizontal scalability to multiple servers via sharding. Query flexibility, supporting complex queries and aggregation operations. Data replication and fault tolerance ensure data redundancy and high availability. JSON support for easy integration with front-end applications. High performance for fast response even when processing large amounts of data. Open source, customizable and free to use.

What does mongodb mean? What does mongodb mean? Apr 07, 2024 pm 05:57 PM

MongoDB is a document-oriented, distributed database system used to store and manage large amounts of structured and unstructured data. Its core concepts include document storage and distribution, and its main features include dynamic schema, indexing, aggregation, map-reduce and replication. It is widely used in content management systems, e-commerce platforms, social media websites, IoT applications, and mobile application development.

Let's learn how to input the root number in Word together Let's learn how to input the root number in Word together Mar 19, 2024 pm 08:52 PM

When editing text content in Word, you sometimes need to enter formula symbols. Some guys don’t know how to input the root number in Word, so Xiaomian asked me to share with my friends a tutorial on how to input the root number in Word. Hope it helps my friends. First, open the Word software on your computer, then open the file you want to edit, and move the cursor to the location where you need to insert the root sign, refer to the picture example below. 2. Select [Insert], and then select [Formula] in the symbol. As shown in the red circle in the picture below: 3. Then select [Insert New Formula] below. As shown in the red circle in the picture below: 4. Select [Radical Formula], and then select the appropriate root sign. As shown in the red circle in the picture below:

How to open mongodb How to open mongodb Apr 07, 2024 pm 06:15 PM

On Linux/macOS: Create the data directory and start the "mongod" service. On Windows: Create the data directory and start the MongoDB service from Service Manager. In Docker: Run the "docker run" command. On other platforms: Please consult the MongoDB documentation. Verification method: Run the "mongo" command to connect and view the server version.

Where are the mongodb database files? Where are the mongodb database files? Apr 07, 2024 pm 05:42 PM

The MongoDB database file is located in the MongoDB data directory, which is /data/db by default, which contains .bson (document data), ns (collection information), journal (write operation records), wiredTiger (data when using the WiredTiger storage engine ) and config (database configuration information) and other files.

See all articles