SyntaxFix
Write A Post
Hire A Developer
Questions
Notes.Select(x => x.Author).Distinct();
This will return a sequence (IEnumerable<string>) of Author values -- one per unique value.
IEnumerable<string>
Author