我将此用作参考并安装了两者(使用nuget)
安装包 RavenDB.Client -Version 1.0.992
和
安装包 RavenDB-Embedded -Version 1.0.919
(官方链接建议使用Install-Package RavenDB-Embedded。但是该 nuget 命令失败并出现错误 Install-Package : Unable to find package 'RavenDB-Embedded'。)
但是代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Raven.Client.Document;
namespace ConsoleApplication4
{
class Program
{
static void Main(string[] args)
{
var Store = new DocumentStore { ConnectionStringName = "RavenDB" };
var instance = new EmbeddableDocumentStore { ConnectionStringName = "RavenDB" };
}
}
}
无法识别 EmbeddableDocumentStore。EmbeddableDocumentStore 的命名空间是什么?