State of the Union
Rainer Stropek | software architects | @rstropek
MVP for Azure and Developer Technologies
Microsoft Regional Director
Passionate programmer, entrepreneur,
teacher, dancer
rainer@software-architects.at
@rstropek
https://rainerstropek.me
/customers
/customers/ALFKI
List of all
customers
Details of
ALFKI
...
/customers
/customers/ALFKI
List of all
customers
Details of
ALFKI
List sorted
by country
/customersByCountry
Only new
customers
/newCustomers
/newCustomersByCountry
...
/customers
/customers/ALFKI
List of all
customers
Details of
ALFKI
List sorted
by country
/customersByCountry
Only new
customers
/newCustomers
/newCustomersByCountry
...
Sorting, filtering, etc.
/customers
/customers/ALFKI
List of all
customers
Details of
ALFKI
List sorted
by country
/customersByCountry
Only new
customers
/newCustomers
/newCustomersByCountry
...
Sorting, filtering, etc.
https://api.myserver.com/odata/$metadata
https://api.myserver.com/odata/Customers?
$filter=CustomerID eq 15&
$top=10&
$select=FirstName,LastName# Return all Categories containing more than two products whose price is greater than 5.00.
http://host/service/Categories?$filter=Products/$count($filter=Price gt 5.00) gt 2
# Return all Orders that have any Items with a Quantity greater than 100
http://host/service/Orders?$filter=Items/any(d:d/Quantity gt 100)
# Return customers along with their orders that shipped to the same city as the customer's address
http://host/service/Customers?$expand=Orders($filter=$it/Address/City eq ShipTo/City)URL
Parser
OData AST
IQueryable
C# Expression Tree
SQL
EF Core