MongoDB
 sql >> Base de Dados >  >> NoSQL >> MongoDB

Como forçar o mongo a armazenar membros em letras minúsculas?


Para usar IMemeberMapConvention, você deve certificar-se de declarar suas convenções antes que o processo de mapeamento ocorra. Ou, opcionalmente, descarte os mapeamentos existentes e crie novos.

Por exemplo, o seguinte é a ordem correta para aplicar uma convenção:
        // first: create the conventions
        var myConventions = new ConventionPack();
        myConventions.Add(new FooConvention());

        ConventionRegistry.Register(
           "My Custom Conventions",
           myConventions,
           t => true);

        // only then apply the mapping
        BsonClassMap.RegisterClassMap<Foo>(cm =>
        {
            cm.AutoMap();
        });

        // finally save 
        collection.RemoveAll();
        collection.InsertBatch(new Foo[]
                               {
                                   new Foo() {Text = "Hello world!"},
                                   new Foo() {Text = "Hello world!"},
                                   new Foo() {Text = "Hello world!"},
                               });

Veja como essa convenção de amostra foi definida:
public class FooConvention : IMemberMapConvention

    private string _name = "FooConvention";

    #region Implementation of IConvention

    public string Name
    {
        get { return _name; }
        private set { _name = value; }
    }

    public void Apply(BsonMemberMap memberMap)
    {
        if (memberMap.MemberName == "Text")
        {
            memberMap.SetElementName("NotText");
        }
    }

    #endregion
}

Estes são os resultados que saíram quando executei esta amostra. Você pode ver que a propriedade Text acabou sendo salva como "NotText":