What framework to use for RESTful Services in .net

后端 未结 5 1190
终归单人心
终归单人心 2021-01-30 14:33

I know that similar questions have been asked, but most of them are out of date. So here we go again :). I need to implement a complete REST service layer for our application. T

5条回答
  •  生来不讨喜
    2021-01-30 15:07

    Been playing with Nancy myself lately and I'm also considering Manos de Mono. Here's the an example from the home page on Nancy.

    public class HelloModule : NancyModule
    {
        public HelloModule()
        {
            Get["/"] = parameters => "Hello World";
        }
    }
    

提交回复
热议问题