Azure Data API Builder - Partial Match
Anyone familiar with the Azure Data API Builder how I can do a partial match filter with a string? There doesn't seem to be a filter operator for a "like".
https://learn.microsoft.com/en-us/azure/data-api-builder/rest#filter
9 Replies
For example, I do a filter query param like the following, but this of course does not support a partial match
that's odata, not c# 😒
anyway, there are also azure and power stuff discord servers
anyway a google search for "odata like" answers with
contains()
I should have mentioned before, but I've tried that.
Results in

From everything I've researched, Data API Builder might just not support it
there seem to be too many '
i guess it should be
contains(FirstName, 'Auger')
It doesn't appear there is a
contains
operation for the filter


hmmm it should be part of odata 🤔
Yeah that's what I read about odata, but the data Api builder doesn't seem to strictly implement all the facets of odata
i know it's just inspired from odata, but if there's no contains i don't know if it's possible to architect something like that
as strange as it sounds
maybe thers's
substringof
, indexof
? or instead of $filter
there's a specific parameter for a full text searching query