Wcf数据服务$expand问题

发布于 2024-12-24 22:46:16 字数 645 浏览 0 评论 0 原文

我有 2 个表“内容”和“频道”。具有频道导航属性的内容

我在数据服务中创建了一个方法“GetContentsOfChannel”,该方法将channelID作为para并

通过执行下面的uri返回该channelID的所有内容我正在获取该频道id的所有内容

http://localhost:28553/WNADataService.svc/GetContentsOfChannel?channelID=37

但我也想要每个内容的频道详细信息,当我尝试使用 $expand 时,我收到错误

http://localhost:28553/WNADataService.svc/GetContentsOfChannel?channelID=37$expand=Channels

是我遗漏了一些东西还是有任何其他方式可以获取所有详细信息

请帮助我

i am having 2 tables Content and Channel. content having the navigation property of channel

i have created a method "GetContentsOfChannel" in data service which takes channelID as para and return all the contents of that channelID

by executing below uri i am getting all the contents of that channel id

http://localhost:28553/WNADataService.svc/GetContentsOfChannel?channelID=37

but i also want the channel details for each content when i tried with $expand i am getting error

http://localhost:28553/WNADataService.svc/GetContentsOfChannel?channelID=37$expand=Channels

is i am missing some thing or there is any other way by which i can get all the details

please help me

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

终止放荡 2024-12-31 22:46:16

它应该是 http://localhost:28553/WNADataService.svc/GetContentsOfChannel?channelID=37&$exp‌ and=Channels

&为了向查询字符串添加新参数
$expand - 用于加载相关实体的 OData 参数名称

it should be http://localhost:28553/WNADataService.svc/GetContentsOfChannel?channelID=37&$exp‌​and=Channels

& in order to add new param to query string
$expand - OData param name to load related entity

陈年往事 2024-12-31 22:46:16

尝试使用 & 而不是 $

希望这会有所帮助。

Try using & insteadof $

Hope this helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文