I'm working on a C# project that incorporates SQL, mainly using entities and linq.
Let's say I have two tables.
Table 1
primary key | name | date
Table 2
primary key | fktable1 | price
I would like to display Name, Date AND price in a datagrid. How can I pull the two - or one if we do it vice versa - values out of table 1 by only referencing the Foreign Key(Which is the Primary Key of Table 1) ?