net Datable 基本操作 using System; using System.Collections.Generic; using System.Text; using System.Data; namespace ConsoleApplication11 { class Program { //add by yuanzhang liu static void TestDataTable() { //表的创建 DataTable dt = new DataTable(); dt.Tab…
MongoDB的基本操作包括文档的创建.删除.和更新 文档插入 1.插入 #查看当前都有哪些数据库 > show dbs; local 0.000GB tim 0.000GB #使用 tim数据库 > use tim; switched to db tim #查看都有哪些集合 > show collections; user > db.user.in db.user.initializeOrderedBulkOp( db.user.insert( db.user.insertOne…