Blog.Logic.Core.PostsLogic.SearchPosts C# (CSharp) Method

SearchPosts() public method

public SearchPosts ( string query, int threshold = 10, int skip = 10 ) : List
query string
threshold int
skip int
return List
        public List<Post> SearchPosts(string query, int threshold = 10, int skip = 10)
        {
            var posts = new List<Post>();
            try
            {
                var db = _postRepository.SearchPosts(query, threshold, skip).ToList();
                db.ForEach(a => posts.Add(PostMapper.ToDto(a)));
                posts.ForEach(a => GetPostProperties(a));
            }
            catch (Exception ex)
            {
                throw new BlogException(ex.Message, ex.InnerException);
            }
            return posts;
        }