I need to have two entityManagers in an angular app using breese so that I can get data from two different services. One service is an OData API and the other is a standard breeze web api (asp.net web api using breeze controllers).
My OData context works fine but when I create the standard one the uriBuilder property is still odata and when this manager trys to get metedata is is prefixing the $metadata value onto the end of the url.
breeze.config.initializeAdapterInstance('modelLibrary', 'backingStore', true);
breeze.NamingConvention.camelCase.setAsDefault();
var serviceName = common.testApiUrl;
var metadataStore = createMetadataStore();
does anyone know if its even possible to have the two setup?