RavenDB:我如何只为特定对象保存更改

时间:2013-03-18 18:44:39

标签: ravendb

在MVC应用程序中,对于请求,我创建一个文档会话并检索一堆对象并在内存中处理它们。在此期间,如果出现错误,我创建一个Error对象并将其存储在Raven中。当我调用SaveChanges来存储这个Error对象时,内存中所有其他对象的状态也会被保存。我需要避免这种情况。如何仅为Error对象触发Savechanges? 我们使用StructureMap来获取DocumentSession的实例:

public RavenDbRegistry(string connectionStringName)
{
    For<IDocumentStore>()
        .Singleton()
        .Use(x =>
        {
            var documentStore = new DocumentStore { ConnectionStringName = connectionStringName };
            documentStore.Initialize();         
            return documentStore;
        }
        )
        .Named("RavenDB Document Store.");
    For<IDocumentSession>()
        .HttpContextScoped()
        .Use(x =>
        {
            var documentStore = x.GetInstance<IDocumentStore>();
            return documentStore.OpenSession();
        })
        .Named("RavenDb Session -> per Http Request.");
}

这就是我保存错误对象的方法:

private void SaveError(Error error)
{
    documentSession.Store(error);
    documentSession.SaveChanges();
}

我尝试过的几种变体并没有按预期工作: 1.仅为错误记录创建新的DocumentSession:

private void SaveError(Error error)
{
    var documentStore = new DocumentStore { ConnectionStringName = "RavenDB" };
    documentStore.Initialize();
    using (var session = documentStore.OpenSession())
    {
        documentSession.Store(error);
        documentSession.SaveChanges();
    }
}

2。在TransactionScope中包装

private void SaveError(Error error)
{
    using (var tx = new TransactionScope())
    {
        documentSession.Store(error);
        documentSession.SaveChanges();
        tx.Complete();
    }
}

目前我不知道该怎么做。任何帮助将不胜感激。

** * ** * ** < / strong> 更新 ** * ** * ** * ***

我可以通过在SaveChanges

之前添加以下行来解决此问题

documentSession.Advanced.Clear();

所以现在我的SaveError看起来像这样:

private void SaveError(Models.CMSError error)
        {
            documentSession.Advanced.Clear();
            documentSession.Store(error);
            documentSession.SaveChanges();            
        }

2 个答案:

答案 0 :(得分:0)

创建一个新的文档会话 - 但是在现有文档存储上,而不是在新文档存储上。

注入IDocumentStore并在其上调用OpenSession

答案 1 :(得分:0)

我可以通过在SaveChanges

之前添加以下行来解决此问题
documentSession.Advanced.Clear();.

所以现在我的SaveError看起来像这样:

private void SaveError(Models.CMSError error)
        {
            documentSession.Advanced.Clear();
            documentSession.Store(error);
            documentSession.SaveChanges();            
        }