0
The query worked she has 2 questions randomly with the 5 options each. The problem is that my select loads the view described below:
public class QuestaoOpcaoModel
{
public int QuestaoId { get; set; }
public string QuestaoPergunta { get; set; }
public int OpcaoId { get; set; }
public string OpcaoDescricao { get; set; }
}
Aí tentei o seguinte código:
```c#
(from q in _educ365Context.Questoes
join op in _educ365Context.Opcoes on q.Id equals op.QuestaoId
where q.TemaId == int.Parse(tema)
orderby rnd.Next()
select new QuestaoOpcaoModel
{
QuestaoId = q.Id,
QuestaoPergunta = q.Pergunta,
OpcaoId = op.Id,
OpcaoDescricao = op.opcaoResposta
})
.Take(2);
E ao fazer isso me trouxe as 2 perguntas mas com apenas 1 opção sendo que e, cada pergunta existem 5 opções vinculas a ela. Como posso fazer para resolver isso?
Good Marcelo, glad you made it!
– MauroAlmeida