Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a class defined as:


        public class Student
        {
            public string Id { get; set; }
            public IDictionary<string, string> Attributes { get; set; }
        }

based on the discussion I found here : http://groups.google.com/group/ravendb/browse_thread/thread/88ea52620021ed6c?pli=1

I can store an instance quite easily as :


            //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();
            }

However when I query it as below:


            //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();                
            }

I get the error "'System.Linq.Expressions.InstanceMethodCallExpressionN' to type 'System.Linq.Expressions.MemberExpression'." as shown:

enter image description here How can I query based on a key in the dictionary?

share|improve this question
Just verified that it works fine in unstable build 350 : builds.hibernatingrhinos.com/builds/ravendb-unstable – BASarat Apr 30 '11 at 21:46

1 Answer

up vote 7 down vote accepted

This is a bug, it is fixed now. Will be out in the next build, in about two hours

share|improve this answer
3  
Always an honor to read anything you write – BASarat Apr 29 '11 at 16:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.