I have this linq query I am trying to optimize. I want to replace this query with a fast constant (preferably) retrieval of the value. I thought about a twin key dictionary but I have no idea which order the fname or lname will come first. I wanted to ask here if there is a fast way to do this.
I wanted to take a list of names, search through it for fname-lname
the -
is the delimeter and return all that match the full name that is searched. The list of people could be moderately large.
var nameList = from p in listOfPeople
where ((p.lname+"-"+p.fname == fullName)
|| (p.fname+"-"+p.lname == fullname))
select p;
Edit: listOfPeople
can be any datatype, not necessarily a list.
Here's how you can create your dictionary.
Then your lookup would be
It's important to keep the first and last names separate or you have to pick a delimiter that will not show up the the first or last name. Hyphen "-" could be part of a first or last name. If the delimiter is guaranteed to not be part of the first or last name you can just substitute the use of the
Tuple.Create(x,y)
withx + delimiter + y
and change the dictionary toDictionary<string, List<Person>>
.Additionally the reason for having a
List<Person>
as the value of the dictionary is to handle cases like "Gary William" and "William Gary" being two different people.