|
var queryResult = practiceQuestionTable.InnerJoin(practiceQuestionOptionTable, (p, o) => p.QuestionId == o.QuestionId && p.Id == o.PracticeQuestionId)
|
|
var queryResult = practiceQuestionTable.InnerJoin(practiceQuestionOptionTable, (p, o) => p.QuestionId == o.QuestionId && p.Id == o.PracticeQuestionId)
|
|
.Select((p, o) => new PracticeQuestionOptionsDto
|
|
.Select((p, o) => new PracticeQuestionOptionsDto
|