public IEnumerable <Tag> GetTagsByPostId(int postId)
        {
            var tags = this.connection.Query <Tag>(TagQuery.GetTagsByPostId(), new { PostId = postId }, this.transaction);

            return(tags);
        }