Building a C# Web API - REST

后端 未结 5 1468
醉酒成梦
醉酒成梦 2021-02-06 08:01

I am about to start a project in C#. I\'ve never used c# and I was hoping I could get some implementation advice before I make a silly mistake and go down the wrong path.

5条回答
  •  無奈伤痛
    2021-02-06 08:46

    For a simple Web API, WCF is overkill, clunky, operation orientated and designed for SOAP based services (it does Web HTTP, but that was an afterthought).

    The new kid on the block is ASP.NET MVC Web API for lightweight web-orientated architectures. Prepare to see more and more of this young upstart.

提交回复
热议问题