私は次のように定義されたクラスを持っています:
public class Student
{
public string Id { get; set; }
public IDictionary<string, string> Attributes { get; set; }
}
私がここで見つけた議論に基づいて:http: //groups.google.com/group/ravendb/browse_thread/thread/88ea52620021ed6c? pli = 1
インスタンスは次のように非常に簡単に保存できます。
//creation
using (var session = store.OpenSession())
{
//now the student:
var student = new Student();
student.Attributes = new Dictionary<string, string>();
student.Attributes["NIC"] = "studentsNICnumberGoesHere";
session.Store(student);
session.SaveChanges();
}
ただし、以下のようにクエリすると、次のようになります。
//Testing query on attribute
using (var session = store.OpenSession())
{
var result = from student in session.Query<Student>()
where
student.Attributes["NIC"] == "studentsNICnumberGoesHere"
select student;
var test = result.ToList();
}
「'System.Linq.Expressions.InstanceMethodCallExpressionN'と入力して'System.Linq.Expressions.MemberExpression'」というエラーが表示されます。示されているように:
辞書のキーに基づいてクエリを実行するにはどうすればよいですか?