I have a search feature in my app. The way it works is, the user pulls up a record, the kits the search button which passes the first name, last name and date of birth from the record, to a LINQ query. The LINQ query is then supposed to serve up possible matches. Right now it serves up too many results. I want the date of birth match to be exact, then the first and last name matches can be somewhat loose. In a perfect world, the results would have:
- Exact match to the DOB
- Fuzzy matches to the first name
- Close, but not strict, matches to the last name.
Example, If I am searching for James May, born 11/27/1974, I would like results such as:
Jim May 11/27/1974
Jack May 11/27/1974
James Mayford 11/27/1974
I know the best thing would be a stored procedure, but I tried that and everytime I added the stored Proc to my project, it corrupted the EDMX file, so I am stuck doing it with LINQ.
Here is what I have so far:
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;
This gives results like this:
Ileana May 10/30/1967
Kristina May 4/23/1971
margaret Mayberry 7/26/1942
Karla Mayorga 5/14/1986
Stan Mayer 3/8/1952
Lori Maynard 7/22/1965
So the last name is good, but the date of birth should not vary like that. Thank you for reading.
