我尝试使用RavenDb.Client为Web Api应用设置单元测试。该应用程序正在使用作为服务运行的RavenDb服务器,并且运行正常。
在我的测试项目中,我已将连接字符串设置为Memory = True,但测试会抛出一个异常,说明"内存"是一个未知的选择。
我做错了什么?
<connectionStrings>
<add name="RavenDbConnectionString" connectionString="memory=1"/>
</connectionStrings>
IDocumentStore store = new DocumentStore()
{
ConnectionStringName = "RavenDbConnectionString"
}.Initialize();
答案 0 :(得分:3)
memory = 1与memory = true不同。