예제 #1
0
 public IEnumerable <Note> Search()
 {
     return(InListNote.Where(e => e.HeaderNote.Contains(SearchText)));
 }
예제 #2
0
파일: Search.cs 프로젝트: IlyaGrig/NoteApp
 public IEnumerable <Note> GetNotesFound()
 {
     return(InListNote.Where(e => e.HeaderNote.Contains(SearchText) ||
                             e.NoteName.Contains(SearchText)));
 }