What replaces WCF in .Net Core?

后端 未结 9 522
逝去的感伤
逝去的感伤 2020-11-30 19:27

I am used to creating a .Net Framework console application and exposing a Add(int x, int y) function via a WCF service from scratch with Class Library (.Net Fra

9条回答
  •  抹茶落季
    2020-11-30 19:44

    So from my research the best solution does not have the auto-generated proxy classes. This best solution is to create a RESTful service and to serialise the response body into model objects. Where the models are the usual model objects found in the MVC design pattern.

    Thank you for your responses

提交回复
热议问题