kylesonaty / Stellar

A simple .net client for Azure CosmosDB
MIT License
3 stars 1 forks source link

Add support for orderby #10

Closed kylesonaty closed 6 years ago

kylesonaty commented 6 years ago
docs.Query<TestObject>().OrderBy(x => x.Name)

should generate something like

SELECT * FROM TestObject ORDER BY Name ASC