I am working on a asp mvc app. I am putting together a query that 2 lists of names from 2 different tables, then should put them together. The query is in a method so I can call it easily. The problem I am running into is I get an error, regardless of whether I try Union or Intersect. The error is:
"Model.PersonAttributes does not contain a definition for Union (or Intersect) and the best overload, blah blah..."
Here is my code:
public List<SearchAndMergeViewModel> SearchForMerge(string FName, string LName, string DOB)
{
var query = from p in _Elig_DB.PersonAttributes.ToList()
where p.getDateOfBirth == DOB &&
(p.FirstName.Contains(FName) || p.FirstName.StartsWith(FName) &&
p.LastName.Contains(LName) || p.LastName.StartsWith(LName))
select p;
var queryb = from a in _Elig_DB.PersonAlias.ToList()
join e in _Elig_DB.PersonAttributes.ToList() on a.PersonID equals e.PersonID
where a.FirstName == FName && a.LastName == LName
select new SearchAndMergeViewModel
{
FirstN = a.FirstName,
LastN = a.LastName,
DOB = e.DOB
};
var results = query.Intersect(queryb);
return results.ToList();
}
The above error is connected to the line "var results = query.Intersect(queryb);".
I also get an error, "Type arguments for method Enumerable.ToList can not be inferred from the usage."
Any ideas?