Exemplo n.º 1
0
        public JsonResult Get()
        {
            var             questionDB     = new QuestionDB(_context);
            List <question> alleKunder     = questionDB.getAllQuestions();
            List <question> sortedQuestion = alleKunder.OrderBy(q => q.votes).ToList();

            sortedQuestion.Reverse();
            return(Json(sortedQuestion));
        }