标签: c# wcf
我想创建一个可以通过HTTP请求调用的WCF,并在URL中获取参数。
像: http://someservice.svc/FetchEverything?User=xxx&category=clothes
http://someservice.svc/FetchEverything?User=xxx&category=clothes
然后服务应该在响应中返回json。
感谢您的建议。
答案 0 :(得分:0)
查看WCF数据服务。这允许您使用REST接口,或者更准确地说,OData接口(= REST + AtomPub +查询支持)轻松公开实体框架模型(或其中的一部分)。
查看http://msdn.microsoft.com/en-us/library/cc668794.aspx。