gpt4 book ai didi

c# - Mongodb 约定包

转载 作者:IT老高 更新时间:2023-10-28 13:09:21 28 4
gpt4 key购买 nike

如何在 C# 中使用 MongoDB ConventionPack 我有以下代码:

MongoDatabase Repository = Server.GetDatabase(RepoName);
this.Collection = Repository.GetCollection<T>(CollectionName);
var myConventions = new ConventionPack();
myConventions.Add(new CamelCaseElementNameConvention());

约定包会自动附加到 this.Collection 吗?
当我加载一个新对象时,它会像这种情况一样自动持久化吗?
我是否必须在我的类声明中添加标签(如数据协定)?

最佳答案

你需要在ConventionRegistry中注册包:

var pack = new ConventionPack();
pack.Add(new CamelCaseElementNameConvention());
ConventionRegistry.Register("camel case",
pack,
t => t.FullName.StartsWith("Your.Name.Space."));

如果你想全局应用这个,你可以用更简单的东西替换最后一个参数,比如 t => true

序列化和反序列化的工作示例代码(驱动程序 1.8.20,mongodb 2.5.0):

using System;
using System.Linq;
using MongoDB.Bson;
using MongoDB.Bson.Serialization.Conventions;
using MongoDB.Driver;

namespace playground
{
class Simple
{
public ObjectId Id { get; set; }
public String Name { get; set; }
public int Counter { get; set; }
}

class Program
{
static void Main(string[] args)
{
MongoClient client = new MongoClient("mongodb://localhost/test");
var db = client.GetServer().GetDatabase("test");
var collection = db.GetCollection<Simple>("Simple");
var pack = new ConventionPack();
pack.Add(new CamelCaseElementNameConvention());
ConventionRegistry.Register("camel case", pack, t => true);
collection.Insert(new Simple { Counter = 1234, Name = "John" });
var all = collection.FindAll().ToList();
Console.WriteLine("Name: " + all[0].Name);
}
}
}

关于c# - Mongodb 约定包,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19521626/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com