コード例 #1
0
ファイル: HomeController.cs プロジェクト: DanHarries/NerdNews
        public IActionResult CommentCount(string postId)
        {
            // Get comment count
            var getCount = _process.GetCommentCount(postId);

            return(Json(new { count = getCount }));
        }