Web服务和实体框架
我一直在研究实体框架,并希望创建一个 Web 服务,供第三方开发人员正在创建的共享点中的应用程序使用。基本上我需要返回工作列表,例如基于某些搜索条件的列表。我想使用 EF,所以我有一些可扩展的东西,但是从 Web 服务返回 POCO 似乎比我想象的要困难。 Web 服务和 EF / POCO 是否可以协同工作?有没有人有任何好的例子或者可以给我指出一些。
Ive been playing around with the entity framework with an idea for creating a web service to be consumed by an application in sharepoint that a 3rd party developer is creating. Basically i need to return a list of jobs e.g list based on some search criteria. I wanted to use the EF so i have something scalable however it seems returning POCO's from a web service is harder than i imagined it to be. Are web services and EF / POCO's meant to work together. Does anyone have any good examples or can point me to some.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。您必须确保的唯一一件事是使您的实体可序列化 - POCO 实体可以包含默认情况下不可序列化的循环引用。
POCO 的情况并非如此。仅适用于自我跟踪实体 。
Yes. The only thing you must to ensure is to make your entities serializable - POCO entities can contain circular references which are not serializable by default.
This is not true with POCOs. This is only true with Self tracking entities.