Hi
I have a Posts class and that post can have one file and that file can have many tags
I want to iterate through the files in a post and show all the files tags
foreach(File f in Post.Files)
{
f.Tags
}
What do I need in this foreach to get the top tag? there will only ever be one.
i tried
f.Tags.Select(n => n)
with no luck.
Thanks