Haiyan Du

Results 7 comments of Haiyan Du

I got the almost the same issue, one reason could be you restored this database from another database. The database object belongs to the old one. Stop your APP, try...

Azure app service

Azure app service with .net 6 as runtime framework, no dock container

use ftp deployment resolved issue

After I added ProfileService, My own API is protected, but Admin Site is not working anymore. Can you add ProfileService to your project, so we can continue to add our...

It is working after I restarted Azure Website. This issue can be closed now.

miguelg1583 suggestion works for me ``` app.UseSwagger(c => { c.RouteTemplate = "api-docs/{documentName}/swagger.json"; }); app.UseSwaggerUI(c => { c.RoutePrefix = "api-docs"; c.SwaggerEndpoint("v1/swagger.json", "v1"); }); ```