Error 4 Cannot implicitly convert type
'System.Collections.Generic.IEnumerable<System.Collections.Generic.IEnumerable<CCE_2009.Data.Person>>'
to
'System.Collections.Generic.IEnumerable<CCE_2009.Data.Person>'
Generated from:
var RecoveryManagerQuery =
from RM in
(
from REP in e.Results
select REP.Organization.Representatives.Select(RM=>RM.Person)
)
select RM;
RecoveryManagers = new ObservableCollection<Person>(RecoveryManagerQuery.ToList());
Why is this IEnumberable embeded - Organizations have one or more representatives where each representative is related to one and only one person.
I want a list of Persons that match this criteria.....
argghh..
R