public static async Task <int> IncrementReplyCountAsync(this CommentContext context, int commentId, CancellationToken ct = default)
 {
     return(await context.Database.ExecuteSqlCommandAsync("SELECT increment_reply_count({0})", new object[] { commentId }, ct));
 }
 public static async Task <int> ChangeDownVoteAsync(this CommentContext context, int commentId, CancellationToken ct = default)
 {
     return(await context.Database.ExecuteSqlCommandAsync("SELECT change_down_vote({0})", new object[] { commentId }, ct));
 }