I have two tables: Post and User.
the User has an Id and Name... fields. and the Post has an userId and Title... fields.
im using linq, and i want to be able to write something like this:
var post = dc.Posts.FirstOrDefault();
var user = post.User;
then i want to be able to do: post.User.Name
...
help please..