Ryan Holmes

Results 37 issues of Ryan Holmes

`{{base_url}}/api/posts?$filter=id gt 1 and id lt 5 and contains(title, 'Feugiat')` where clause is evaluated to Post.id > :p0 AND Post.id < :p1 AND Post.title like :p0. Note the title parameter...

Fixes #37 See the issue for a test case from the example server :)

Fixes #29, Requires #28 as I used it's sorted evaluation. Essentially, this changes the way alias's work. We no longer assume the alias = the navigation property, because in that...

Fixes #24 I really don't know if this is the proper way of doing things, but it seems to work (at least for my simple test cases). This PR addresses...

Fixes #30 ## Testing ### Pre-fix `{{base_url}}/api/posts?$expand=author($select=id),category` This would return an empty result set, primarily because we're not explicitly selecting out anything for the Post. ``` [] ``` ### Post-fix...

`{{base_url}}/api/authors?$expand=posts($orderby=id desc;$top=1)&$filter=id eq 5` This returns ``` [ { "id": 5, "name": "Emmanuel Salinas", "posts": [ { "id": 10, "title": "Cursus Ltd", "text": "ac mattis ornare, lectus ante dictum mi,...

`{{base_url}}/api/posts?$expand=author($select=id),category` I would expect this to produce ``` [ { "id": 1, "title": "Ultricies Sem Ltd", "text": "quam. Curabitur vel lectus. Cum", "author": { "id": 1 }, "category": { "id":...

I have these entities: Email EmailImageAttachments EmailOtherAttachments Document EmailImageAttachments and EmailOtherAttachments Are associated 1:M to the Email. Both those entities also have a link to a Document If I attempt...

Sorry, don't really know how else to word that. This can be seen as one of the base example routes: /api/posts - $filter by $expand ``` {{base_url}}/api/posts?$select=id,title,text,author&$expand=category,author&$filter=author/id eq 1 ```...

I have two tables: * Expense detail * Expense header Expense Detail has an FK to Expense Header. Expense Header has a field that I wish to filter on called...