我正在尝试进行简单的查询:
方法1:
var ss = from h in je.RolesUsers.Expand("Role").Where(h => h.UserID == 1) select h;
方法2:
var e = je.RolesUsers.Expand("Role").Where(s => s.UserID == 1);
我从来没有在结果中扩展“角色”,它总是为空。 两行都对服务执行相同的请求:
http://localhost:5521/JoybaDataService.svc/RolesUsers()?$filter=cast(UserID,'Edm.Int32') eq 1&$expand=Role
使用此查询,我可以扩展“角色”。 任何想法???