Web 服务中的实体引用

发布于 2024-12-24 21:33:40 字数 181 浏览 0 评论 0原文

我在数据库中有两张表,其中一张是员工,另一张是城市。我从数据库创建了 ado.net 实体数据模型。我带了一名员工,我可以访问这些城市。我正在使用网络服务并有一个返回列表的网络方法。我选择了员工并调用了 ToList() 方法。我无法访问由 Web 服务(asmx 不是 wcf)提供的表示层中的城市名称,只能访问城市 ID。我该如何解决这个问题。

I have 2 tables in database one of them is employee and the other one is city. I created ado.net entity data model from database. I took a employe and i can access city of these. I am using web service and have a webmethod which return List. I selected employees and called ToList() method. I can not access city name in presentation layer which feeds by web service (asmx not wcf), only access in ID of city. how can i solve this problem.

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

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

发布评论

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

评论(1

憧憬巴黎街头的黎明 2024-12-31 21:33:40

从 EF 检索实体以加载实体的导航属性时,您可以使用 .Include。

http://msdn.microsoft.com/en-us/library/bb896272.aspx 这里是 .Include 上的文档,如果您有 EF4.1 或更高版本,扩展方法中还有一个 lambda 版本,它可以为您提供类型安全性(参考 System.Data.Entity)

You can use .Include when retrieving your entity from EF to load navigation properties for your entity.

http://msdn.microsoft.com/en-us/library/bb896272.aspx heres the docs on .Include, if you have EF4.1 or above there is also a lambda version in an extension method which gives you type safety (Reference System.Data.Entity)

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