, EF 7. :
var customer = db.tbl_Person
.Include(t => t.tbl_Customer).ThenInclude(c=>c.tbl_Address)
.Where(...).ToList();
ThenInclude . .
Update
, , tbl_Customer null, Person Customer. , Customer, FK. , CustomerId int, Customer Address ( ), :
var customer = db.tbl_Person
.Include(t => t.tbl_Customer.tbl_Address)
.Where(t => t.VendorID == person.VendorID &&
t.FirstName == person.FirstName &&
t.LastName == person.LastName &&
t.tbl_CustomerId != 0 &&
t.tbl_Customer.tbl_Address.State == address.State &&
t.tbl_Customer.tbl_Address.City == address.City).ToList();