Skip to content

Opportunity-Holding/RESTar.OData

Repository files navigation

By Erik von Krusenstierna (erik.von.krusenstierna@mopedo.com)

What is RESTar.OData?

RESTar.OData is a free to use open-source protocol provider for RESTar that makes it possible to interact with a RESTar API using the OData 4.0 protocol. Requests to RESTar.OData are compiled into a common format before evaluation, which means that it can use all the facilities of RESTar, just over a different interface.

RESTar.OData is meant to be a community project, and Mopedo will provide the initial help needed for further development as well as regular updates to match the latest releases of RESTar. If you have any questions or issues, or wish to contribute to the project, post an issue or contact Erik at erik.von.krusenstierna@mopedo.com.

Getting started

RESTar.OData is, like RESTar, distributed as a package on the NuGet Gallery, and an easy way to install it in an active Visual Studio project is by entering the following into the NuGet Package Manager console:

Install-Package RESTar.OData

Using RESTar.OData

RESTar.OData defines a protocol provider for RESTar, which should be included in the call to RESTarConfig.Init() in applications that wish to use it. Protocol providers are essentially add-ons for RESTar, enabling – for example – API protocols like OData to work as a native protocol for RESTar – and interact with RESTar resources just like the built-in protocol. For more on protocol providers, see the RESTar Specification.

For information about the OData protocol, see the OData documentation.

Example requests

To specify the protocol for a RESTar request, we add a dash - and the protocol ID directly after the root URI of the service. In RESTar.OData's case, the ID is odata. Here are some OData requests URIs, and their equivalent RESTar protocol URIs.

OData:  GET http://localhost:8282/api-odata/superhero
RESTar: GET http://localhost:8282/api/superhero
OData:  GET http://localhost:8282/api-odata/superhero?$filter=hassecretidentity%20eq%20true&$top=5
RESTar: GET http://localhost:8282/api/superhero/hassecretidentity=true/limit=5
OData:  GET http://localhost:8282/api-odata/superhero?$orderby=name%20asc
RESTar: GET http://localhost:8282/api/superhero//order_asc=name

Supported operations

URIs and operations

RESTar.OData supports the following OData query options:

  • $filter – equivalent to URI conditions in RESTar protocol
  • $orderby – equivalent to the order_asc and order_desc meta-conditions
  • $select – equivalent to the select meta-condition
  • $skip – equivalent to the offset meta-condition
  • $top – equivalent to the limit meta-condition

$filter

RESTar.OData supports the following operators in $filter query option conditions:

  • "eq"– equivalent to "=" (equals)
  • "ne"– equivalent to "!=" (not equals)
  • "lt"– equivalent to "<" (less than)
  • "gt"– equivalent to ">" (greater than)
  • "le"– equivalent to "<=" (less than or equals)
  • "ge"– equivalent to ">=" (greater than or equals)

The operators available in the RESTar protocol are coverered here.

$orderby

RESTar.OData supports only one argument per $orderby query option, and only one $orderby query option per URI.

Content types

RESTar.OData has support for only application/xml when writing the Metadata document, and only application/json when writing all other resources. RESTar.OData only accepts application/json as input format.

Methods

RESTar.OData supports all methods that are enabled for the resource, except REPORT. So OData clients can select, insert, update and delete entities just like with the RESTar protocol.

Authentication/authorization

RESTar.OData supports authentication and access control, just like in the RESTar protocol.

Metadata

RESTar.OData publishes an OData metadata document at /$metadata, with a few things to mention:

  • Metadata is generated by RESTar's own reflection, which is available at RESTar.Metadata.Get(), which means no further member reflection is needed to generate the metadata document.
  • Navigation properties are not currently used. Instead all properties have <Property> tags.
  • Unlike RESTar, OData has a formal notion of key, that is used in entity types. All entity types should have a key, which requires the developer to declare which member in the resource type that should be treated as key. This is done by decorating the member with the System.ComponentModel.DataAnnotations.KeyAttribute.
  • All Starcounter database resources have their ObjectNo as key.
  • All SQLite database resources have their RowId as key.

About

An OData protocol provider for RESTar

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages