Thomas Matecki
Thomas Matecki
WIP -- failing test
Within the example, we have two classes registered in the data model(EntityServiceRegistar;49): ` oDataEdmRegistry.registerClasses(Lists.newArrayList( Person.class, GetAverageAge.class ));` I expect a function to be present within the metadata document( in Schema...
Currently `XLSXListField` does not behave very nicely if _prepping_ a value of `None`. This field corresponds to DRF's `ListField`, which [does support ](https://github.com/encode/django-rest-framework/issues/5951#issuecomment-383285617) `allow_null=True`. ``` def prep_value(self) -> Any: >...