Difference between OData and REST web services

前端 未结 8 896
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-07 07:54

What is the difference between OData and REST-ful web services?

相关标签:
8条回答
  • 2020-12-07 08:05

    From the OData documentation:

    The OData Protocol is an application-level protocol for interacting with data via RESTful web services.

    ...

    The OData Protocol is different from other REST-based web service approaches in that it provides a uniform way to describe both the data and the data model.

    0 讨论(0)
  • 2020-12-07 08:18

    REST stands for REpresentational State Transfer which is a resource based architectural style. Resource based means that data and functionalities are considered as resources.

    OData is a web based protocol that defines a set of best practices for building and consuming RESTful web services. OData is a way to create RESTful web services thus an implementation of REST.

    0 讨论(0)
提交回复
热议问题