Using Joins vs Entity associations

Posted by shivesh on Stack Overflow See other posts from Stack Overflow or by shivesh
Published on 2010-05-05T22:15:16Z Indexed on 2010/05/05 22:18 UTC
Read the original article Hit count: 132

I am learning Entity framework and linq-to-entities.

It's possible to get cross values from multiple tables using JOINS (join keyword) or using the navigation fields ( associations) in which case the framework knows how to reference the cross data.

My question is what to use when?

© Stack Overflow or respective owner

Related posts about entity-framework

Related posts about linq-to-entities