I'm using ASP.NET MVC 3 with Entity Framework CodeFirst

I have two classes as follows:

Question:

public class Question
{
    public int ID { get; set; }
    public Target Target { get; set; }
    public string QuestionText { get; set; }
    public Category Category { get; set; }
    public QuestionType QuestionType { get; set; }
    public virtual ICollection<Answer> Answers { get; set; }
    public Unit Unit { get; set; }
}

Answer:

public class Answer
{
    public int ID { get; set; }
    public virtual Question Question { get; set; }
    public string AnswerText { get; set; }
    public int Value { get; set; }
}

I also have this ViewModel:

public class QuestionViewModel
{
    public int ID { get; set; }
    public string Question { get; set; }
    public string QuestionType { get; set; }
    public string Target { get; set; }
    public string Category { get; set; }
    public string Unit { get; set; }
    public List<Answer> Answers { get; set; }
}

I want to query the questions table and include the answers, if there are any.

I've been trying this style

        var question = (from q in hontgen.Questions
                        where q.ID == id
                        join qt in db.QuestionTypes on q.QuestionType equals qt
                        join t in db.Targets on q.Target equals t
                        join c in db.Categories on q.Category equals c
                        join u in db.Units on q.Unit equals u
                        join a in db.Answers on q.Answers equals a

                        select new QuestionViewModel() {
                            ID = q.ID,
                            Question = q.QuestionText,
                            QuestionType = qt.Type,
                            Category = c.CategoryName,
                            Unit = u.UnitName,
                            Target = t.TargetName,
                            Answers = a
                        }).Single();

But this of course doesn't roll, because a isn't a list of answers, but only one answer.

How do I rewrite the query to take all answers in the collection, or all answers with the correct question in "Question", while at the same time accepting an empty answers-list?

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

What about a sub query like the following

public class DataRepository
{
    public List<Question> Questions { get; set; }
    public IEnumerable<Answer> Answers { get; set; }

}


public class QandA
{

    DataRepository dr = new DataRepository();

    public void QueryQuestion(int id)
    {
        var question = (from q in dr.Questions
                        where q.ID == id

                        select new QuestionViewModel()
                        {
                            ID = q.ID,
                            Question = q.QuestionText,
                            Answers = (from a in dr.Answers 
                                        where a.Question == q
                                        select a)
                        });
    }

}

}

link|improve this answer
Hi thanks for your quick reply, I'm trying it out right now (my code is a bit messy at the time, but I'm sorting it out). It compiles fine and looks as it would do the job. However, what if i have no answers, what will happen to the .ToList()? – Niclas Lindqvist Feb 10 '11 at 15:14
I keep getting this.. Any ideas? LINQ to Entities does not recognize the method 'System.Collections.Generic.List1[Project.Models.Answer] ToListHow to Answer(System.Collections.Generic.IEnumerable`1[Project.Models.Answer])' method, and this method cannot be translated into a store expression.` – Niclas Lindqvist Feb 10 '11 at 15:22
1  
In the Repository What if you make List<Answer> Answers into IEnumerable<Answer> Answers; then you dont call the ToList() function and the query will run. Then if you need the funcionality of a list later you can use Answers.ToList() outside of the Linq to Entities query. – Wes Grant Feb 10 '11 at 15:28
Hi again, I did what you said (more or less) but I get an exception: Unable to create a constant value of type 'Project.Models.Answer'. Only primitive types ('such as Int32, String, and Guid') are supported in this context. Can't get my head around this.. Any clue this time too? Can't objects be enumerable? – Niclas Lindqvist Feb 11 '11 at 9:15
1  
To work around this try using property of the entity on your joins instead of the entire entity. for example join to Targets on the Id field instead of on the entity. Example 'join t in db.Targets on q.Target.TargetId equals t.TargetId – Wes Grant Feb 11 '11 at 12:28
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

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