var store = new DocumentStore()
{
Url = @"http://localhost"
};
store.Initialize();
Blog blog = new Blog()
{
Title = "Hello RavenDB",
Category = "RavenDB",
Content = "This is a blog about RavenDB",
Comments = new BlogComment[]{
new BlogComment() { Title = "Unrealistic", Content= "This example is unrealistic"},
new BlogComment() { Title = "Nice", Content= "This example is nice"}
}
};
using (IDocumentSession session = store.OpenSession())
{
session.Store(blog);
session.SaveChanges();
}
上記のコードは、データをデフォルトのデータベースに保存します。(これはWebアプリケーションです。)しかし、Raven Management Studio(Webページ)を作成した別のデータベースにデータを保存したいと思います。データベース名はどこで指定しますか?また、接続文字列をデータベース名とともに構成ファイルに保存する方法を教えてください。これは私がデータベース名なしで設定ファイルにそれを保存する方法です
<connectionStrings>
<add name="Local" connectionString="DataDir = ~\Data"/>
<add name="Server" connectionString="Url = http://localhost:8080"/>
</connectionStrings>