C〓〓では公式駆動でMongoDBを操作します.

28017 ワード

8.1)ダウンロードインストール
 C〓〓の中でMongoDBを使いたいならば、まずMongoDB支持のC〓版の駆動があります.Cシリーズの駆動は、政府が提供するように、多くの種類があります.サムス.実現の考えは大体同じである.ここではまずオフィシャルで提供しているmono-csharp-driverを使って、現在のバージョンは1.4.1です.
ダウンロード先:http://github.com/mongodb/mongo-csharp-driver/downloads
コンパイルして二つのdllをもらいます.
 MongoDB.Driver.dll:名前の通り、ドライバプログラム
 MongoDB.Bson.dll:プロローグ、Json関連
 そして私たちのプログラムでこの二つのdllを引用します.
 下の部分は簡単にC〓〓を使ってMongoDBを添削して操作を調べることを実証しました.
 8.2)接続データベース:
 データベースに接続する前に、MongoDBがオープンしていることを確認してください.
//         const string strconn = "mongodb://127.0.0.1:27017";

 //      const string dbName = "cnblogs";

//        MongoServer server = MongoDB.Driver.MongoServer.Create(strconn);

 //     cnblogs MongoDatabase db = server.GetDatabase(dbName);
8.3)データを挿入する:
データが開きました.今はデータを追加します.私たちはUserの「記録」をUsersセットに追加します.
MongoDBには表の概念がないので、データを挿入する前に表を作成する必要はありません.
挿入するデータのモデルUsersを定義しなければなりません.
Users.cs:

    public class Users

    {

        public ObjectId _id;//BsonType.ObjectId       MongoDB.Bson.ObjectId      public string Name { get; set; }

        public string Sex { set; get; }

    }
_.ID属性は必ず必要です.データ更新時にエラーが発生します.「Element'dos not match any field or property of class」.
 はい、データを追加するコードを見てみます.どう書きますか?
public void Insert()

{

    //        MongoServer server = MongoDB.Driver.MongoServer.Create(strconn);

    //     cnblogs MongoDatabase db = server.GetDatabase(dbName);

    Users users = new Users();

    users.Name = "xumingxiang";

    users.Sex = "man";

    //  Users  ,        ,      MongoCollection col = db.GetCollection("Users");

    //       col.Insert<Users>(users);

}
8.4)データの更新
public void Update()

{

    //        MongoServer server = MongoDB.Driver.MongoServer.Create(strconn);

    //     cnblogs MongoDatabase db = server.GetDatabase(dbName);

    //  Users   MongoCollection col = db.GetCollection("Users");

    //    “Name”  “xumingxiang”      var query = new QueryDocument { { "Name", "xumingxiang" } };

    //       var update = new UpdateDocument { { "$set", new QueryDocument { { "Sex", "wowen" } } } };

    //       col.Update(query, update);

}
8.5)データの削除
public void Delete()

{

    //        MongoServer server = MongoDB.Driver.MongoServer.Create(strconn);

    //     cnblogs MongoDatabase db = server.GetDatabase(dbName);

    //  Users   MongoCollection col = db.GetCollection("Users");

    //    “Name”  “xumingxiang”      var query = new QueryDocument { { "Name", "xumingxiang" } };

    //       col.Remove(query);

}
8.6)クエリデータ
public void Query()

{

    //        MongoServer server = MongoDB.Driver.MongoServer.Create(strconn);

    //     cnblogs MongoDatabase db = server.GetDatabase(dbName);

    //  Users   MongoCollection col = db.GetCollection("Users");

    //    “Name”  “xumingxiang”      var query = new QueryDocument { { "Name", "xumingxiang" } };

          

    //           var result1 = col.FindAllAs<Users>();

    //              ,       。 var result2 = col.FindOneAs<Users>();

    //              var result3 = col.FindAs<Users>(query);

}
 
 
 
 
 
 
MongoDbはC〓中で使用します.
 
 
using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Runtime.Serialization;

using System.Data;

using System.Data.SqlClient;

using MongoDB.Bson;

using MongoDB.Driver;



namespace ConsoleApplication1

{

    class Program

    {

        static void Main(string[] args)

        {

            //                string conn = "mongodb://localhost";

            string database = "demoBase";

            string collection = "demoCollection";



            MongoServer mongodb = MongoServer.Create(conn);//                 MongoDatabase mongoDataBase = mongodb.GetDatabase(database);//                  MongoCollection mongoCollection = mongoDataBase.GetCollection(collection);//

            mongodb.Connect();



            //                var o = new { Uid = 123, Name = "xixiNormal", PassWord = "111111" };

            mongoCollection.Insert(o);



            //                Person p = new Person { Uid = 124, Name = "xixiObject", PassWord = "222222" };

            mongoCollection.Insert(p);



            //BsonDocument               BsonDocument b = new BsonDocument();

            b.Add("Uid", 125);

            b.Add("Name", "xixiBson");

            b.Add("PassWord", "333333");

            mongoCollection.Insert(b);



            Console.ReadLine();

        }

    }



    class Person {

        public int Uid;

        public string Name;

        public string PassWord;



    }

}
 
結果:
上のような配置で書いてあります.プログラムは自動的に対応するライブラリとセットを作ります.
以下の操作は完全なコードではないです.
            /*---------------------------------------------

             * sql : SELECT * FROM table 

             *---------------------------------------------

             */

            MongoCursor<Person> p = mongoCollection.FindAllAs<Person>();



            /*---------------------------------------------

             * sql : SELECT * FROM table WHERE Uid > 10 AND Uid < 20

             *---------------------------------------------

             */

            QueryDocument query = new QueryDocument();

            BsonDocument b = new BsonDocument();

            b.Add("$gt", 10);

            b.Add("$lt", 20);

            query.Add("Uid", b);



            MongoCursor<Person> m = mongoCollection.FindAs<Person>(query);



            /*-----------------------------------------------

             * sql : SELECT COUNT(*) FROM table WHERE Uid > 10 AND Uid < 20

             *-----------------------------------------------

             */

            long c = mongoCollection.Count(query);



            /*-----------------------------------------------

            * sql : SELECT Name FROM table WHERE Uid > 10 AND Uid < 20

            *-----------------------------------------------

            */

            QueryDocument query = new QueryDocument();

            BsonDocument b = new BsonDocument();

            b.Add("$gt", 10);

            b.Add("$lt", 20);

            query.Add("Uid", b);

            FieldsDocument f = new FieldsDocument();

            f.Add("Name", 1);



            MongoCursor<Person> m = mongoCollection.FindAs<Person>(query).SetFields(f);

            /*-----------------------------------------------

            * sql : SELECT * FROM table ORDER BY Uid DESC LIMIT 10,10

            *-----------------------------------------------

            */

            QueryDocument query = new QueryDocument();

            SortByDocument s = new SortByDocument();

            s.Add("Uid", -1);//-1=DESC

            MongoCursor<Person> m = mongoCollection.FindAllAs<Person>().SetSortOrder(s).SetSkip(10).SetLimit(10);
 
 
 
 
 
 
 
C〓〓ではsamus駆動操作でMongoDBを操作します.
また、サードパーティ駆動のsamusを紹介します.これは多くのドライバを使用して、更新頻度が速く、samus駆動は一般的な動作をサポートするほか、LinqとLambada表現もサポートします.
ダウンロード先:https://github.com/samus/mongodb-csharp
ダウンロードしてコンパイルして2つのdllを得ます.
MongoDB.dll          駆動のメインプログラム
MongoDB.GridFS.dll    大きなファイルを保存するために使用します.
ここではMongoDB.dllを引用します.  いいです.MongoDB.GridFS.dllについては本論文では使えません.紹介しないで、無視します.
その接続データベースとCRUDの操作は以下の通りです.
//        const string strconn = "mongodb://127.0.0.1:27017";

//     const string dbName = "cnblogs";

//     MongoDatabase db;



/// <summary>///        

/// </summary>public void GetConnection()

{

    //  Mongo   Mongo mongo = new Mongo(strconn);

    //     mongo.Connect();

    //     cnblogs,          db = mongo.GetDatabase(dbName) as MongoDatabase;

}



/// <summary>///     

/// </summary>public void Insert()

{

    var col = db.GetCollection<Users>();

    //   

    //var col = db.GetCollection("Users");

    Users users = new Users();

    users.Name = "xumingxiang";

    users.Sex = "man";

    col.Insert(users);

}

/// <summary>///     

/// </summary>public void Update()

{

    var col = db.GetCollection<Users>();

    //  Name  xumingxiang       Users users = col.FindOne(x => x.Name == "xumingxiang");

    //     

    //Users users = col.FindOne(new Document { { "Name", "xumingxiang" } }); users.Sex = "women";

    col.Update(users, x => x.Sex == "man");

}



/// <summary>///     

/// </summary>public void Delete()

{

    var col = db.GetCollection<Users>();

    col.Remove(x => x.Sex == "man");

    ////  

    ////  Name  xumingxiang       //Users users = col.FindOne(x => x.Sex == "man");

    //col.Remove(users);}



/// <summary>///     

/// </summary>public void Query()

{

    var col = db.GetCollection<Users>();

    var query = new Document { { "Name", "xumingxiang" } };



    //              var result1 = col.Find(query);

    //               var result2 = col.FindOne(query);

    //           var result3 = col.FindAll();

}
 
 
 
Query Dcumentのよく使うクエリ:
[csharp]
 
view plin
copy
//*-----------------------              * sql : SELECT * FROM テーブル WHERE ConfigID > 5 AND ObjID = 1             *-------------------------               */               Query Dcument query = new Query Dcument();               Bson Dcument b = new Bson Dcument();               b.Add(「$gt」) 5)                          query.Add(「ConfigID」、 b):   query.Add(「ObjID」、 1)   Mongo Cursor m = monogo Collection.FindAs(query)      //*-----------------------              * sql : SELECT * FROM テーブル WHERE ConfigID > 5 AND ConfigID < 10             *-------------------------               */               Query Dcument query = new Query Dcument();               Bson Dcument b = new Bson Dcument();               b.Add(「$gt」) 5)      b.Add(\"lt") 10)                    query.Add(「ConfigID」、 b):   Mongo Cursor m = monogo Collection.FindAs(query)    
 
 
 1     public クラス ニュース 2     { 3         public 要点 _id. { get; セット }  4         public 要点 count { get; セット }  5         public ストリングス ニュース { get; セット }  6         public DateTime 時間 { get; セット }  7     }  8  9 Mongo Cursor<Bson Dcument> allDoc = coll.FindAllAs<Bson Dcument>();10 Bson Dcument doc = allDoc.First() //Bson Dcumentタイプパラメータ11 12 Mongo Cursor<News> all News = coll.FindAllAs<News>();13 ニュース aNew = all News.First() //Newsタイプパラメータ14 15 ニュース first News = coll.FindOnes<News>() //最初の文書を検索16 17 Query Dcument query = new Query Dcument(); //クエリードキュメントの定義18 query.Add(_id) 10001);19 query.Add(「count」) 1);20 Mongo Cursor<News> qNews = coll.FindAs<News>(query);21 22 23 Bson Dcument bd. = new Bson Dcument()//クエリードキュメントの定義 count>2 and count<=424 bd.Add(「$gt」) 2);25 bd.Add(「$lte」) 4);26 Query Dcument queryua = new Query Dcument();27 queryua.Add(「count」、bd);28 29 Fields Dcument fd = new Fields Dcument();30 fd.Add(「_id」、 0);31 fd.Add(「count」、 1);32 fd.Add(「time」、 1);33 34 Mongo Cursor<News> mNews = coll.FindAs<News>(queryual).Set Fields(fd);/countとtime 35のみを返します. 36 var 時間 = Bson DateTime.reate(2011/9/5 23:26:00","37"," Bson Dcument db t = new Bson Dcument();38 db t.Add(「$gt」) タイム Query Dcument qidu 3 = new Query Dcument();40 qd_3.Add(タイムme) dbmut; 42 Mongo Cursor<News> mNews = coll.FindAs<News>(qd_3);