Is it possible to expose multiple Odata v4 endpoints in Asp.Net WebApi project
问题 The title explains the requirement. Is it possible to expose multiple endpoints in single project? Something like: http://localhost:8000/svc1/$metadata http://localhost:8000/svc2/$metadata http://localhost:8000/svc3/$metadata Because I need to divide functionality into multiple components. Can anyone help me? UPDATE Currently I'm using below code to create and expose Odata service. public void Configuration(IAppBuilder app) { HttpConfiguration config = new HttpConfiguration(); ConfigureRoute