Ejemplo n.º 1
0
        public List <Comment> GetCommentsAsync()
        {
            using (WeddingWebsiteDB context = new WeddingWebsiteDB()) {
                var comments = (from c in context.Comments
                                orderby c.Id descending
                                select c).ToList();



                return(comments);
            }
        }