I thought this might be helpful for others (and to remind me to create a PR): OData v4 has a trim string function. I believe this can be implemented in property.py like this: ```python def trim(self): return u'trim({0})'.format(self.name) ```