I have a List where one of its field is based on the People Editor control. The field name is Organizer. How do I get the value if this field using SPlinq. When I iterate thru the list item in debug mode, I can see that the OrganizerImnName has a value. And in the intellisense of the SPLinq I can see this two attributes, OrganizerId and OrganizerImnName. When I try to get the value Like this
var results = from o in dc.GetList<OrganizerItem>("Organizer")
select new { Organizer = o.OrganizerImnName };
I get this error The query uses unsupported elements, such as references to more than one list, or the projection of a complete entity by using EntityRef/EntitySet.