RavenDb.netWebサイトでRavenDBチュートリアルを実行しています。
インデックスを作成するためのコードブロックに到達するまで、問題はありませんでした。
このコードセグメントは、RavenDB.NetWebサイトから直接取得されます。
store.DatabaseCommands.PutIndex("OrdersContainingProduct", new IndexDefinition<Order>
{
Map = orders => from order in orders
from line in order.OrderLines
select new { line.ProductId }
});
コンパイル時にエラーが発生します:「非ジェネリック型'Raven.Database.Indexing.IndexDefinition'は型引数では使用できません。」
IndexDefinitionが非ジェネリックの場合、サンプルコードでジェネリックとして使用されるのはなぜですか?切断はどこにありますか?
お時間をいただきありがとうございますジム