sql >> Databáze >  >> NoSQL >> MongoDB

Jak použít atribut BsonRepresentation podle konvence při použití MongoDB

Jo, taky jsem si toho všiml. Aktuální implementace StringObjectIdIdGeneratorConvention zdá se, že z nějakého důvodu nefunguje. Zde je jeden, který funguje:

public class Person
{
    public string Id { get; set; }
    public string Name { get; set; }
}

public class StringObjectIdIdGeneratorConventionThatWorks : ConventionBase, IPostProcessingConvention
{
    /// <summary>
    /// Applies a post processing modification to the class map.
    /// </summary>
    /// <param name="classMap">The class map.</param>
    public void PostProcess(BsonClassMap classMap)
    {
        var idMemberMap = classMap.IdMemberMap;
        if (idMemberMap == null || idMemberMap.IdGenerator != null)
            return;
        if (idMemberMap.MemberType == typeof(string))
        {
            idMemberMap.SetIdGenerator(StringObjectIdGenerator.Instance).SetSerializer(new StringSerializer(BsonType.ObjectId));
        }
    }
}

public class Program
{
    static void Main(string[] args)
    {
        ConventionPack cp = new ConventionPack();
        cp.Add(new StringObjectIdIdGeneratorConventionThatWorks());
        ConventionRegistry.Register("TreatAllStringIdsProperly", cp, _ => true);

        var collection = new MongoClient().GetDatabase("test").GetCollection<Person>("persons");

        Person person = new Person();
        person.Name = "Name";

        collection.InsertOne(person);

        Console.ReadLine();
    }
}


  1. MongoDB $ sqrt

  2. Zdokonalování umění automatizace a správy nejoblíbenějších databází s otevřeným zdrojovým kódem:2017 @ Somenines

  3. Co si mám vybrat:MongoDB/Cassandra/Redis/CouchDB?

  4. Potíže s konfigurací uživatelů a připojením k Mongo pomocí PHP