MongoDB

安裝使用

小插曲:項目屬性-生成-高級,發現vs2013只支持到C#5.0
C#6.0在vs2015引入,或在vs2013基礎上從https://github.com/dotnet/roslyn下載roslync包html

MongoDB Client

RoboMongo --> Robo 3T
RoboMongo鏡像地址:http://dl.mongodb.org/dl/win32/x86_64
Robo 3T下載地址:https://robomongo.org/download
可分別參考:使用教程1, 使用教程2git

.Net MongoDB

驅動下載:https://github.com/mongodb/mongo-csharp-driver/releases,或直接在 nuget.net 中下載包
MongoDB .Net文檔:https://api.mongodb.com/csharp/current/html/R_Project_CSharpDriverDocs.htm
版本兼容一覽表:MongoDB C#/.NET Drivergithub

基礎概念

查詢

若類對象T中無_id字段,FindOneAs 方法會拋異常: Element '_id' doesnot match any field of class T mongodb

新增

  • insert
  • save

insert能夠一次性插入一個列表,不用遍歷、效率高, save須要遍歷列表、一個個插入。
關於insert和save的區別:https://blog.csdn.net/xiaojin21cen/article/details/40480609
注意,文中強調的是自有的主鍵_id。若插入數據中有自定義爲Unique索引的字段,insert和save均會拋異常鍵重複。api

更新

刪除

MongoDB資料系列app

問題解決

問題1:保存DateTime類型到Mongo後,日期比存入的日期要小
緣由:Mongo會將時間保存成UCT時間,即格林威治時間,比北京時間要晚8小時
解決:在時間屬性上加標籤[BsonDateTimeOptions(Kind = DateTimeKind.Local)]或註冊ui

BsonSerializer.RegisterSerializer(typeof(DateTime),
    new DateTimeSerializer(DateTimeSerializationOptions.LocalInstance));

具體參見:http://www.voidcn.com/article/p-tanzovjm-bsx.html
問題2:在.Net中寫enum類型對象到MongoDB,會存儲爲Int32類型
解決:方法1方法2
問題3:調用Save()方法,提示報錯:.net

No IdGenerator found.  在 MongoDB.Driver.MongoCollection.Save(Type nominalType, Object document, MongoInsertOptions options)
在 MongoDB.Driver.MongoCollection.Save(Type nominalType, Object document)
在 MongoDB.Driver.MongoCollection.Save[TNominalType](TNominalType document)
在 CMB.ScheduleTask.MongoHelper.SaveOne[T](MongoServerSettings connString, String dbName, String collectionName, T entity)

解決:entity中必需要有_id字段。另,MongoDB驅動新版(v2.7.0等)均已去掉Save()方法
問題4:MongoDB(v3.4)鏈接初始化報錯(MongoDB Driver v2.8.1)code

Multiple custom attributes of the same type found.    
at System.Attribute.GetCustomAttribute(Assembly element, Type attributeType, Boolean inherit)
at System.Runtime.InteropServices.RuntimeInformation.get_FrameworkDescription()  [4.3.0] 
at System.Lazy`1.CreateValue() 
 --- End of stack trace from previous location where exception was thrown ---   
at System.Lazy`1.get_Value()   
at MongoDB.Driver.Core.Connections.ClientDocumentHelper.CreateClientDocument(String applicationName)   
at MongoDB.Driver.Core.Connections.BinaryConnectionFactory..ctor(ConnectionSettings settings, IStreamFactory streamFactory, IEventSubscriber eventSubscriber)   
at MongoDB.Driver.Core.Configuration.ClusterBuilder.CreateConnectionPoolFactory()   
at MongoDB.Driver.Core.Configuration.ClusterBuilder.CreateServerFactory()   
at MongoDB.Driver.Core.Configuration.ClusterBuilder.CreateClusterFactory()   
at MongoDB.Driver.ClusterRegistry.CreateCluster(ClusterKey clusterKey)   
at MongoDB.Driver.ClusterRegistry.GetOrCreateCluster(ClusterKey clusterKey)  
at MongoDB.Driver.MongoClient..ctor(MongoClientSettings settings)
at Tool.MongoDBHelper`1..ctor(String collectionName)

解決:先降版本至2.7.0。可參考:由System.Runtime.InteropServices.RuntimeInformation.dll引起的MongoDB鏈接問題orm

相關文章
相關標籤/搜索