C 對MongoDB 進行增刪改查的簡單操作

2021-09-07 04:44:51 字數 1276 閱讀 1125

下面演示下c#操作mongodb驅動的簡單的增刪改查**

運用到的mongodb支援的c#驅動,當前版本為1.6.0

1,連線資料庫

/// /// 資料庫連線

///

private const string conn = "mongodb:";

/// /// 指定的資料庫

///

private const string dbname = "mongodb_name";

/// /// 指定的表

///

private const string tbname = "table_text";

//建立資料連線

mongoserver server = mongoserver.create(conn);

//獲取指定資料庫

mongodatabase db = server.getdatabase(dbname);

//獲取表

mongocollection col = db.getcollection(tbname);

2、插入資料

因為mongodb沒有表的概念,所以自插入資料之前定義好自己的資料模型

user.cs

下面是新增資料的**

/// /// 新增

///

/// 內容

/// 文章id

/// 頻道id

///

public static void add(user t)

3、刪除操作

/// /// 根據objectid 刪除

///

///

public static void delete(string objid)

4、修改

/// /// 根據objectid 修改

///

public static void update(user t)

5、條件查詢(簡單)

/// /// 根據objectid 查詢

///

public static user tucao selectone(string objid)

6、查詢全部

/// /// 查詢所有

///

public static void selectall()

}

mongodb增刪改查

1 mongodb插入資料 db.表名.insert 2 新增乙個欄位.table 代表表名 新增字段 content,字串型別。db.table.update 3 給指定範圍內的記錄新增字段 lt表示小於,lte表示小於等於,gt表大於,gte表示大於等於,timestamp是我表中的乙個時間戳字...

C 中對sqlserver進行增刪改查

using system.data using system.data sqldata string sqlconnection data source 註解1 database 註解2 uid 註解3 pwd 註解4 其實還有很多種寫法 參考 string myconn server 127.0....

php ci對mysql進行增刪改查

php的ci是乙個mvc模式的框架,本文是通過php ci對mysql資料庫進行增刪改查。0.首先在mysql資料庫方建立資料庫和資料表 1 create database test 2use test 3create table user 4 id int 10 not null auto inc...