WCF DataService 具有指定条件的展开节点

发布于 2024-12-04 03:31:37 字数 483 浏览 1 评论 0原文

我正在尝试执行一个简单的查询:

方法 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< /code>

使用此查询我可以扩展“角色”。 有什么想法吗???

I'm trying to do a simple query:

Method 1:

var ss = from h in je.RolesUsers.Expand("Role").Where(h => h.UserID == 1) select h;

Method 2:

var e = je.RolesUsers.Expand("Role").Where(s => s.UserID == 1);

I never get "Role" to be expanded in the result, it is always null.
Both lines execute the same request to the service:

http://localhost:5521/JoybaDataService.svc/RolesUsers()?$filter=cast(UserID,'Edm.Int32') eq 1&$expand=Role

Using this query I get "Role" to be expanded.
any Idea???

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文