I am using SL4,

I have a a table MyTable (comId, groupId,verionId)
When the domain services are generated in a business application, the code in the domain services works fine

return this.ObjectContext.MyTable;


but if I I modify it to return one column I get an error

return this.ObjectContext.MyTable.Include("groupId");

Any help is greatly appreciated