DBContext = contextobject
Entity= tablename/entiry name
var obj= DBContext.Entity.Create();
DBContext.Entity.add(obj);
then obj has all reference/navigation.
var obj= new Entity();
DBContext.Entity.add(obj);
then obj has not reference/navigation map.