ZEXSM / OData.QueryBuilder

OData.QueryBuilder - library for creating complex OData queries (OData version 4.01) based on data models with linq syntax.
MIT License
72 stars 31 forks source link

Support Navigation Properties #67

Closed josh-hoiland closed 3 years ago

josh-hoiland commented 3 years ago

I'm looking to do something like this:

builder
    .For<Company>("companies")
    .ByKey(1)
    .For<Customer>("customers")
    .ByKey(1)

that would produce this path: /companies(1)/customers(1)

josh-hoiland commented 3 years ago

@ZEXSM Thanks!