I have two tables in my database Department and Faculty . I am populating a datagridview for department list in my winform application . Both of my tables are following
Department
- Sno (int)
- Name (varchar(max))
- Status (bit)
- Faculty_id (int)
Faculty
- Sno (int)
- Name
- Status
Now come to code i simply drag and drop a datagridview into my form and go to code behind file . In my form’s load method i write following code
var main = new SRMEntities();
var departs = main.Department.ToList();
DepartmentGrid.DataSource = departs;
now when my form load it show like this

Look in faculty column its showing nothing and when we create department we store a faculty id into department . i want to show faculty name here .
Please let me know if you have any question .
Thanks in advance
Edit
My Database Diagram

Here is correct join: