This works:
using (var dbContext = new SmartDataContext()) { dbContext.Configuration.ProxyCreationEnabled = false; var query = dbContext.EntityMasters.O
You need to assign the result of Include back to query
Include
query
query = query.Include(p => p.Addresses);