Converts OData V4 queries to DocumentDB SQL queries.
This package supports most of the intersectional functionalities provided by OData V4 and DocumentDB SQL. For example, if you have a class looks like:
public class Company {
public string englishName,
public string countryCode,
public int revenue
}
To query all companies whose englishName contains "Limited", and sort them by countryCode in descending order, then select the revenue property from top 5 results, you can issue an OData query to your web service:
http://localhost/Company?$select=revenue&$filter=contains(englishName, 'Limited')&$orderby=countryCode desc&$top=5
The above query will then be translated to DocumentDB SQL:
SELECT TOP 5 c.revenue FROM c WHERE CONTAINS(c.englishName,'Limited') ORDER BY c.countryCode DESC
Note: requires Microsoft.AspNet.OData 6.1.0.0 and .NET Framework 4.62
$select => SELECT
$filter => WHERE
$top => TOP
$orderby => ORDER BY
$count => COUNT(1)
Items/any(d:d/Quantity gt 100) => JOIN a in c.Items WHERE a.Quantity > 100 Note: If more objects in 'Items' qualify for the expression, duplicate results may result. e.g. SELECT value c FROM c JOIN a IN c.sub WHERE a.v=false might return c twice, while c exists once, because the join in 'sub' has two hits
contains()(field, 'value') => CONTAINS(c.field, 'value')
startswith()(field, 'value') => STARTSWITH(c.field, 'value')
endswith()(field, 'value') => ENDSWITH(c.field, 'value')
toupper()(field, 'value') => UPPER(c.field, 'value')
tolower()(field, 'value') => LOWER(c.field, 'value')
length()(field) => LENGTH(c.field)
indexof(field,'value') => INDEX_OF(c.field,'value')
substring(field,idx1,idx2) => SUBSTRING(c.field,idx1,idx2)
trim(field) => LTRIM(RTRIM(c.englishName))
concat(field,'value') => CONCAT(c.englishName,'value')
geo.distance(field, geography'POINT(30 10)') => ST_DISTANCE(c.location,{"type":"Point","coordinates":[30,10]})
geo.intersects(field, geography'POLYGON((30 10, 10 20, 20 40, 40 40, 30 10))') => ST_INTERSECTS(c.area,{"type":"Polygon","coordinates":[[[30,10],[10.20],[20,40],[40,40],[30,10]]]})
The nuget package of this project is published on Nuget.org Download Page. To install in Visual Studio Package Manager Console, run command:
PM> Install-Package Microsoft.Azure.Documents.OData.Sql
After installation, you can include the binary in your *.cs file by
using Microsoft.Azure.Documents.OData.Sql;
-You can find a complete set of examles in ODataToSqlSamples.cs-
There are only two classes you need to work with in order to get the translation done: SQLQueryFormatter and ODataToSqlTranslator.
SQLQueryFormatter is where we do the property and function name translation, such as translating 'propertyName' to 'c.propertyName', or 'contains()' to 'CONTAINS()'. This class inherits from QueryFormatterBase, which abstractly defines all required translations. One can derive from QueryFormatterBase to implement their own translation per need.
ODataToSqlTranslator does the overall translation, by taking in an implementation of QueryFormatterBase. Because the specific translation is defined in QueryFormatter, the translation performs differently according to the implementation in QueryFormatter. The default QueryFormatter is SQLQueryFormatter mentioned above:
var oDataToSqlTranslator = new ODataToSqlTranslator(new SQLQueryFormatter());
Once we have an instance of ODataToSqlTranslator, we can call .Translate(ODataQueryOptions, TranslateOptions, string) method:
var translatedSQL = oDataToSqlTranslator.(oDataQueryOptions, TranslateOptions.ALL, additionalWhereClause: null);
In the above example, the ODataQueryOptions is a fundamental class provided by ASP.NET Web API 2, there you can find detailed instruction on ODataQueryOptions. Additionally, you can also find ODataQueryOptions usage in the ODataToSqlSamples file. The second parameter is TranslateOptions, which defines what queries to be translated. Define TranslateOptions are:
SELECT_CLAUSE, WHERE_CLAUSE, ORDERBY_CLAUSE, TOP_CLAUSE, ALL
The options can be combined with bit operators such as (TranslateOptions.SELECT_CLAUSE | TranslateOptions.WHERE_CLAUSE)
. One common usage is (TranslateOptions.ALL & ~TranslateOptions.TOP)
, this combination enables all translation but TOP. The reason to disable TOP is that when performing pagination, DocumentDB ignores continuation token in FeedOptions if TOP exists. Therefore, the best practice is to use FeedOptions
to perform TOP operation in DocumentDB.
- Ziyou Zheng - Microsoft Universal Store Team -
- Egbert Nierop - Free Lance developer - Added any functionality 2017 oct 13. note: all-functionality not supported.
- ntanaka - Added $count, geography'POINT and geography'POLYGON( translations