コード例 #1
0
 public ActionResult OnPostLikeDeletePost(int postId, [FromServices] UserManager <User> userManager)
 {
     _likeService.DeleteLikeByPostid(postId, userManager.GetUserAsync(HttpContext.User).Id);
     return(RedirectToPage("./Index"));
 }