我如何在Visual Studio 2010中使用wcf服务并以json格式从数据库中获取数据?

时间:2013-05-06 09:39:40

标签: json wcf

我很困惑。如何将WCF与数据库一起使用以json格式显示结果? 我如何在Visual Studio 2010中使用wcf服务并从数据库中获取数据并以json格式获取结果?

1 个答案:

答案 0 :(得分:0)

这是WCF Web HTTP Services的用途 - 使内容在非SOAP端点可用。这是关于如何编写返回JSON的简单服务的helpful writeup,由另一个SO用户@VisualStuart编写。

值得注意的是web.config中的端点配置,它指定了要返回的数据格式:

<standardEndpoints>
  <webHttpEndpoint>
    <standardEndpoint name=""
                      defaultOutgoingResponseFormat="Json"/>
  </webHttpEndpoint>
</standardEndpoints>