我想知道写这样一个查询的正确方法:
var questions = from q in db.Questions
join sq in db.SurveyQuestions on q.QuestionID = sq.QuestionID
where sq.SurveyID == 1
orderby sq.Order
select q;
我基本上想要从Questions表中选择与其他表中的值匹配的所有内容。
我认为也可以这样编写查询:
var questions = from q in db.Questions
from sq in q.SurveyQuestions
where sq.SurveyID == 1
orderby sq.Order
select q;
此查询不起作用,但更符合我的想法:
var questions = from q in db.Questions
where q.SurveyQuestions.SurveyID == 1
orderby q.SurveyQuestions.Order
select q;
使用导航属性在实体框架中编写这些类型的查询的正确方法是什么?
答案 0 :(得分:4)
没有测试过这个,但我认为这就是你要找的东西
var questions = from sq in db.SurveyQuestions
where sq.SurveyID == 1
orderby sq.Order
select sq.Question;
其中Question
是SurveyQuestion
上的导航属性。
您正在使用实体而不使用数据库表。这种类型的查询正是EF的意义所在。您不必像在第一个查询中那样考虑数据库表。相反,您可以立即开始过滤SurveyQuestions
,这更直观。如果您直接在数据库上操作,导航属性将抽象出您将使用的连接。