Any easy way to retain the namespacing of imported schema?
For instance I have a shared common entity schema (CMENT namespace) containing Address. When I convert the common entity schema I get what I would expect.
CMENTAddress.h
CMENTAddress.m
When I convert a schema (HOMESVC namespace) that imports the common entity schema I get:
HOMESVCAddress.h
HOMESVCAddress.m
HOMESVCHome.h
HOMESVCHome.m
I would expect:
CMENTAddress.h
CMENTAddress.m
HOMESVCHome.h
HOMESVCHome.m
Any easy way to retain the namespacing of imported schema?
For instance I have a shared common entity schema (CMENT namespace) containing Address. When I convert the common entity schema I get what I would expect. CMENTAddress.h CMENTAddress.m
When I convert a schema (HOMESVC namespace) that imports the common entity schema I get: HOMESVCAddress.h HOMESVCAddress.m HOMESVCHome.h HOMESVCHome.m
I would expect: CMENTAddress.h CMENTAddress.m HOMESVCHome.h HOMESVCHome.m