Blacker.MangaScraper.Library.DAL.StorageDAL.GetChaptersInfo C# (CSharp) Method

GetChaptersInfo() public method

public GetChaptersInfo ( string search ) : IEnumerable
search string
return IEnumerable
        public IEnumerable<DownloadedChapterInfo> GetChaptersInfo(string search)
        {
            return GetChaptersInfo("ch.ChapterName GLOB @SearchString OR m.MangaName GLOB @SearchString", new Dictionary<string, object>()
                                                                                                              {
                                                                                                                  {"@SearchString", search}
                                                                                                              });
        }

Same methods

StorageDAL::GetChaptersInfo ( ) : IEnumerable
StorageDAL::GetChaptersInfo ( System.DateTime newerThan ) : IEnumerable
StorageDAL::GetChaptersInfo ( IMangaRecord mangaRecord ) : IEnumerable
StorageDAL::GetChaptersInfo ( string condition, object>.IEnumerable parameters ) : IEnumerable