I have this database call in my controller:
var addresses = db.Addresses.Where(a=>a.EmployeeId == id).ToList();
It works fine the way it is, but I am having a hard time to make it async. When I do make it async, I am able to select all records in the table or a single record, just fine. However, I can't seem to get multiple records with matching EmployeeId.