Sample queries
Sitefinity does not support all of the oData query syntax. This is because oData was made to support the Entity Framework LINQ API. Since Sitefinity is using Telerik DataAccess, not every method that is available from the Entity Framework API is available for the DataAcess API.
Following are sample queries that are supported by Sitefinity. The URL /api/default/newsitems
is used for demonstration purposes:
Query multilingual items
To query (or filter) items in different cultures, you must add the sf_culture
query-string parameter. The valid values for this parameter are any valid .NET culture codes.
For example, en
, en-US
, de
, etc.
NOTE: By supplying the culture filter, only the live items are filtered based upon their published versions. If you are querying draft items, this does not apply.
For example when querying news items like using api/default/newsitems?sf_culture=en
, only the items that are translated in the English language will be returned.
Query items from a different provider
In order to query items from a different provider then the default one, you should add the sf_provider
parameter. For example, api/default/newsitems?sf_provider=OpenAccessDataProvider
For more information, see your custom service documentation available at /api/default/sfhelp
For more information about oData syntax, see oData URL Conventions.