Web 服务中的实体引用
我在数据库中有两张表,其中一张是员工,另一张是城市。我从数据库创建了 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从 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)