Notes.Select(x => x.Author).Distinct();
This will return a sequence (IEnumerable<string>
) of Author
values — one per unique value.
Notes.Select(x => x.Author).Distinct();
This will return a sequence (IEnumerable<string>
) of Author
values — one per unique value.