简体   繁体   中英

Rest based web services

REST is concerned with specifying how a remote client can interface with a server, not how the server goes about its job of actually satisfying the clients' requests. Does that mean that if I make a Rest based web service using WCF I can still go about normal database querys in the same fashion without worrying its not rest based? For instance select, insert, update, delete etc?

Internals of a web service is of no concern to the consumer of the service. As long as your public interface sticks to REST principles, internal details are all up to you.

REST doesn't have to do anything with your database queries. It is how client communicates with the server.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM