I use EntityFramework and in my edmx file I have two tables mapped:
Customers column: Id PK
and Orders columns: Id PK CustomerId FK
which are associated.
When I take Order object there IS Customer property but I can't see CustomerId property. I used to work with L2SQL and I expected to see CustomerId but EF somehow hides it.