var x = connection.Set<Team>() .Include(t => t.Level) .Select(t => new {Team = t, LevelForTesting = t.Level}) .ToList() Why I don't get the object x[0].Team.Level (I have 'null') but get the object x[0].LevelForTesting? How can I change this code to get x[0].Team.Level? Thanks.