Create linq like syntax for use with typescript
In jaydata it is possible to generate d.ts files for the entities. It is then possible to write queries like :
northwind
.Products
.filter( product => product.UnitPrice < 50 )
.orderBy ( product => product.Category.CategoryName )
Note that full autocompletion is available for properties.
It would be great to have such a feature in breeze as well.
72
votes

-
Jeremy Danyow commented
-
Joe Daley commented