-
Notifications
You must be signed in to change notification settings - Fork 62
Open
Description
The ODATAV4 standard supports the string function "contains"
See 11.2.5.1.2 Built-in Query Functions in the following section
If implemented exactly the same way as this project already implements "startswith" and "endswith", then wildcard search on specified attributes can be used.
This was achieved by modifiying property.py
def contains(self, value):
value = self.escape_value(value)
return u'contains({0}, {1})'.format(self.name, value)
Metadata
Metadata
Assignees
Labels
No labels
