public User GetByPostId(int postId)
        {
            var user = this.connection.Query <User>(UserQuery.GetByPostId(), new { PostId = postId }, this.transaction).FirstOrDefault();

            return(user);
        }