I have a Generic Repository which has all the common operations. I have two tables Customer and Address. Address is referenced in Customer
public IEnumerable<TEntity> GetAll() { return context.Set<TEntity>(); } Below is my repository
Repository<Customer> customerRepostitory = new Repository<Customer>(); var cusotomerList = customerRepostitory.GetAll(); The above line just returning the customer list, its not including Address Details. Can you suggest the best way to retrieve the child records when i call parent records.