MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Attributo BsonElement e logica di deserializzazione personalizzata con driver MongoDB C#

Perché non creare una proprietà separata per gli utenti e per il DB per la stessa variabile privata, qualcosa del genere,

public class Foo
{
    private string _text;

    [BsonElement("text"), BsonRequired]
    public string TextDB
    {
        get { return _text; }
        set
        {
            _text = value;
        }
    }

    [BsonIgnore]
    public string Text
    {
        get { return _text; }
        set
        {
            _text = value;
            Bar(_text);
        }
    }

    private void Bar(string text)
    {
        //Only relevant when Text is set by the user of the class,
        //not during deserialization
    }
}