My question looks simple to me but not getting it fixed. I am using EF 6 and LINQ to SQL in Visual Studio 2013. I want to fetch a record from second table on behalf of foreign key being used in first table. I wanted to use 'Include' function but 'Include' function neither show table names in IntelliSense nor accepts in a lambda expression like this:
var record= db.tblChild.Include(x=>x.tblParent)
My original code shows the libraries added.

using System.Data.Entity;is what you need to be able to reference the lamda version of.Include, so that should work. We need to see what the error it is giving you after you add the semi-colon.