I have a bunch of entities in my EDMX and I set LazyLoading to false.
As I understand I now have to explicitly load realted entities with every query.
however most references I found point to DbContext and not ObjectContext.
And there seems to be great differences as how eager loading is done in code. In my case I have Customers and Addresses in a 1:1 relationship.
How do I correctly load the address when fetching, e.g. customer #1488?
from c in context.Customers
where c.Id = 1488
select c;
Then I want to be able to use c.Address.Street, c.Address.City etc.
How do I load the Address(es)?

CustomersandAddresses1:1 oder 1:n (just because you mentioned "Address(es)"? In case it is 1:1, you might also consider changing the model so thatCustomersandAddressesare a single entity mapped to two tables. – Matthias Meid Feb 20 '12 at 13:24