现在我正在使用基于SOAP的WCF服务,如何将其转换为RESTfull API。
我的WCF服务将如下所示。
[ServiceContract]
public interface ICategoryService
{
[OperationContract]
bool UpdateCategory(CategoryEntity category);
}
[ServiceBehavior(InstanceContextMode=InstanceContextMode.Single)]
public class CategoryService: ICategoryService
{
}