Forum authro search is working

This commit is contained in:
2017-06-12 15:26:34 +03:00
parent bf9ec07808
commit 44c733b582
5 changed files with 43 additions and 1 deletions

View File

@@ -56,7 +56,10 @@ namespace BL.Services
public IEnumerable<FoorumDTO> SearchFoorumAuthor(string query)
{
throw new NotImplementedException();
foreach (var f in _foorumRepository.GetMany(f => f.Author.ToLower().Contains(query.ToLower())))
{
yield return _factory.Create(f);
}
}
public IEnumerable<FoorumDTO> SearchFoorumTitle(string query)