Zufallsauswahl von Fragen verbessert;
This commit is contained in:
@@ -64,11 +64,9 @@ namespace MultipleChoiceTrainer.Controllers
|
||||
questions = questions.OrderByDescending(e => e.Answers.Where(a => a.Date > newestDate).Count());
|
||||
var minAnswerCount = questions.Select(e => e.Answers.Where(a => a.Date > newestDate).Count()).Min();
|
||||
questions = questions.Where(e => e.Answers.Where(a => a.Date > newestDate).Count() == minAnswerCount);
|
||||
questions = questions.Take(10);
|
||||
|
||||
//questions = questions.Take(10);
|
||||
|
||||
vm.CurrentQuestion = questions.ElementAt(_rnd.Next(0, questions.Count()-1));
|
||||
|
||||
vm.Choices = vm.CurrentQuestion.Choices.Select(oc => new Choice() { Id = oc.Id, Text = oc.Text }).OrderBy(a => Guid.NewGuid()).ToList();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user