2

有没有办法在属性上放置一个属性来告诉 RavenDB 使用这个属性,就像 ID 属性一样,并在它上面放置一个自动增量?

伪代码:

public class MyObj {
    public string Id { get; set; }
    [Increment]
    public int OtherProp { get; set; }
}
4

2 回答 2

5

Dynamicus 指出了正确的解决方案,但我想提供准确的示例代码来帮助其他 Stackoverflow 用户,并可能使解决方案更易于搜索。

关于问题的示例代码,这是解决方案:

public class OtherPropIncrementListener : IDocumentStoreListener
{
    HiLoKeyGenerator _generator;
    IDocumentStore _store;

    public OtherPropIncrementListener(IDocumentStore store)
    {
        this._store = store;
        _generator = new HiLoKeyGenerator(store.DatabaseCommands, "MyObjs", 1);
    }

    public void AfterStore(string key, object entityInstance, RavenJObject metadata)
    {
    }

    public bool BeforeStore(string key, object entityInstance, RavenJObject metadata, RavenJObject original)
    {
        var myObj = entityInstance as MyObj;
        if(myObj != null && myObj.OtherProp == 0)
        {
            string documentKey = _generator.GenerateDocumentKey(_store.Conventions, entityInstance);
            myObj.OtherProp = int.Parse(documentKey.Substring(documentKey.IndexOf("/") + 1));
            return true;
        }

        return false;
    }
}

然后在初始化之后DocumentStore添加此代码以使上述侦听器工作:

documentStore.RegisterListener(new OtherPropIncrementListener(documentStore));
于 2012-10-02T09:33:46.500 回答
0

您可以在 RavenDB 谷歌群组中找到答案。 https://groups.google.com/forum/#!msg/ravendb/70xaVjoMidU/ssDs4mbKoxQJ

于 2012-09-28T16:20:38.287 回答