我不知道如何做到这一点。 我想用一个表格式显示数据。 这些数据将来自使用3-4表格和选择不同领域显示的圆环。 不知道如何回去,因为一度出现匿名错误。
var info = from s in context.LennoxSurveyResponses
join customers in context.Customers on s.SurveyCode equals customers.SurveyCode
join lists in context.CustomerLists on customers.ListId equals lists.ListId
join dealer in context.Channels on lists.ChannelId equals dealer.ChannelId
where dealer.ChannelId == id
select new
{
ResponseId = s.ResponseId,
CustomerFirstName = customers.FirstName,
CustomerLastName = customers.LastName,
CustomerTestimonial = s.Question5Answer
};
我的模式必须宣布什么,才能通过?