pofider / node-simple-odata-server

Simple OData server for node.js
MIT License
97 stars 60 forks source link

Duplicate namespace removed #3

Closed chandruxp closed 9 years ago

chandruxp commented 9 years ago

Prune is truncating namespace + "." from entitySet.entityType and looking for the remaining in model.entityTypes. So this example was failing when the users collection is requested.

Removing duplicate namespace from entityTypes resolved the issue

pofider commented 9 years ago

Thanks!