Morten
Morten
Hi Rob, Thanks for a great tool. I've been using it for a while but ran into some problems with creating a python binding for the netconf YANG module (RFC6241)....
Change from: ``` def bulk_create(self, objs, *args, **kwargs): tenant = get_current_tenant() for obj in objs: setattr(obj, field_name, tenant) return super().bulk_create(objs, *args, **kwargs) ``` to ``` def bulk_create(self, objs, *args, **kwargs):...
## Problem I wanted to do single query SQL selects of foreign key relations that are using Django model inheritance and found the following two improvements helpful. Let me know...