临时路径已被另一个数据库实例RavenDB MVC3使用

时间:2012-03-14 17:22:29

标签: asp.net-mvc-3 exception instance ravendb

我正在运行Windows 7 64位,RavenDB Embedded 1.0.701,MVC 3,C#,VS 2010 Pro。

在按照RavenDB网站上的说明操作后,我得到一个“无法打开事务存储:F:/ RavenDBDataStore / Data”w /内部异常“另一个数据库实例已经使用的临时路径”异常在asp的第一个RELOAD之后.net页面

我尝试处理文档存储,但在我的视图中我得到另一个例外。

public ActionResult Index()
{
    EmbeddableDocumentStore documentStore = new EmbeddableDocumentStore { DataDirectory = "F:/RavenDBDataStore/" };
    documentStore.Initialize(); // <--- this is were I get the exception after reloading the page
    Dictionary<string, object> test = new Dictionary<string, object> {
            { "Name", 0 },
            { "Price", 3.99M },
            { "Expiry", new DateTime(2008, 12, 28) } ,
            { "Sizes", new string[] { "Small", "Medium", "Large" }} 
        };

    var results = new Object();
    using (IDocumentSession session = documentStore.OpenSession())
    {
        // Operations against session
        session.Store(test);
        session.SaveChanges();
        ViewBag.Display = session.Advanced.GetDocumentId(test);
        // Flush those changes
        session.SaveChanges();

        results = from c in session.Query<Dictionary<string, object>>()
                    select c;
    }
    return View(results);
}

1 个答案:

答案 0 :(得分:1)

尝试按照此处描述的步骤进行操作:

Using RavenDB in an ASP.NET MVC website

特别关注管理会议部分......

如果您使用IIS Express调试应用程序,请在调试应用程序之前尝试终止它...