Adam Anderly
Adam Anderly
Can you tell what the generated URL is? Might be worth putting together a quick unit test like those in [BuilderTest.php](https://github.com/saintsystems/odata-client-php/blob/master/tests/Query/BuilderTest.php) with your where and orWhere calls and generating the...
@matohavo this isn't currently supported. However, we are open to a PR to add this. Otherwise, we'll look to add it in a future release.
@bernhardberger, I'll take a look at this. I believe you're right that this could be in the suggest section since any class implementing the interface could be used.
@Axent96, yes with OData 4.01. We'll eventually get there, but right now support OData 4.0.
Have you tried $client->where("Field", "contains", "foo")?
@ds620107, I see. I'm going to see if we can get this implemented using a `whereIn()` method similar to Laravel query builder `whereIn` method. Signature would be like `$client->whereIn('Name', ['Milk','Cheese'])`...
All, fwiw, the team behind action-scheduler, Prospress, was recently acquired by Automattic. It's already being used in WooCommerce with plans to use it more in the future. It's probably the...
What version of the NuGet package are you using and what type of project are you using it in? Also, what framework version are you targeting? Let me know.
Thanks for posting this. I can certainly look at making this change. In the meantime, since Expansive simply gets installed as a single .cs file in your project, you should...
See here: https://github.com/anderly/Expansive#advanced-multi-model-string-templating So, for now, an easier approach (using your example above) might just be calling ``` csharp int age = 5; "I am {age} years old".Expand({ age: age...