Database example:
Image - ImageTag - Tag
Images can have multiple tags. The relationships are set up fine and stuff but I am running into pe
why not try something like:
return from i in qry from iTags in i.ImageTags where tags.Contains(iTags.Tag) select new { TagName = i.Tag.name };
That will return a Collection with only the Tag Names. I hope I'm understanding your question properly here. Hope it helps