MongoHelper
This is a MongoDB operation utility based on MongoDB.Driver like the SqlHelper for relation database.It provides the usual CRUD methods.Query for ordered paged and big data are also supported.Index management also included.
Install / Use
/learn @colin-chang/MongoHelperREADME
MongoHelper
This is a MongoDB operation utility based on MongoDB.Driver like the SqlHelper for relation database.It provides the usual CRUD methods.Query for ordered paged and big data are also supported.Index management also included.
Details of how to use it,please check the unit test project.
Serialize & Deserialize
When a Generic method like Task<IEnumerable<T>> QueryAsync<T>() is invoked,MongoDriver will try to deserialize the query result to an object of type provided.When the type of the object is complex,it may result in some unexpected exceptions.
- Numbers.Use
longinstead ofint.Usedoubleinstead offloat - ObjectId. When the object has an ObjectId type member,a custom ObjectIdConverter is required.You can also use ColinChang.MongoHelper.JsonConvert simply to handle this.
- Subclass. MongoDriver is not friendly for subclass when deserialize to object.try to use interface rather than BaseClass.
- Unmapped members.When the type of your object is not complete mapped with the data from mongo.You should map both of them before invoking mongohelper.
var mongo =
new MongoHelper("mongodb://127.0.0.1","TestDb");
BsonClassMap.RegisterClassMap<ImageResult>(map =>
{
map.AutoMap();
map.SetIgnoreExtraElements(true);
map.MapIdField(p => p.Id);
map.UnmapMember(p=>p.Key);
point.MapProperty(p => ir.UserName).SetElementName("name");
});
check more details here http://mongodb.github.io/mongo-csharp-driver/2.7/reference/bson/mapping/
# Package Manager
Install-Package ColinChang.MongoHelper
# .NET CLI
dotnet add package ColinChang.MongoHelper
Here is the how is works: https://architecture.colinchang.net/nosql/mongo.html
Related Skills
feishu-drive
337.4k|
things-mac
337.4kManage Things 3 via the `things` CLI on macOS (add/update projects+todos via URL scheme; read/search/list from the local Things database)
clawhub
337.4kUse the ClawHub CLI to search, install, update, and publish agent skills from clawhub.com
yu-ai-agent
1.9k编程导航 2025 年 AI 开发实战新项目,基于 Spring Boot 3 + Java 21 + Spring AI 构建 AI 恋爱大师应用和 ReAct 模式自主规划智能体YuManus,覆盖 AI 大模型接入、Spring AI 核心特性、Prompt 工程和优化、RAG 检索增强、向量数据库、Tool Calling 工具调用、MCP 模型上下文协议、AI Agent 开发(Manas Java 实现)、Cursor AI 工具等核心知识。用一套教程将程序员必知必会的 AI 技术一网打尽,帮你成为 AI 时代企业的香饽饽,给你的简历和求职大幅增加竞争力。
