Forum authro search is working
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user