Does swagger API UI load correctly for you now?
What are the errors for the APIs?
Do you mean all 3 sites are writing into the same log file?
When one application pool started writing the log file, the file will be locked and other process can only open it in read-only mode. Hence, other processes will not be able to write to that log file.
I assumed that your subfolder refer to sub-site.
If so, it is resolved by <a class="postlink" href="https://github.com/aspnetzero/aspnet-zero-core/issues/1476">https://github.com/aspnetzero/aspnet-ze ... ssues/1476</a>.
<cite>buddhit: </cite> Hi there
I got the same issue deploying on IIS, I can't seem to find App_data folder at all. I have tried changing security for IIS user but no luck :(
Regards Buddhi
Not sure if your IIS User refer to application pool.
See <a class="postlink" href="https://support.microsoft.com/en-sg/help/2005172/applicationpoolidentity-does-not-have-write-permission-to-asp-net-app">https://support.microsoft.com/en-sg/hel ... sp-net-app</a>
You can consider using Hangfire instead f the default background job.
See <a class="postlink" href="https://aspnetboilerplate.com/Pages/Documents/Hangfire-Integration">https://aspnetboilerplate.com/Pages/Doc ... ntegration</a> <a class="postlink" href="https://www.hangfire.io/overview.html">https://www.hangfire.io/overview.html</a>
<cite>luqc1985: </cite> I want to implement modular development based on .net core. Like the sample code, I am not sure how to define it based on the configuration of IDesignTimeDbContextFactory. I am now adding a Factory class, and then directly specify the link string, I think like the sample code, without this class, directly by the configuration file?
Thanks
I assumed that you are referring to configuration for assembly definition in the config file? I could't find the config file you mentioned In the link provided, do you mean app.config?
<cite>luqc1985: </cite>
<cite>luqc1985: </cite> I want to implement modular development based on .net core. Like the sample code, I am not sure how to define it based on the configuration of IDesignTimeDbContextFactory. I am now adding a Factory class, and then directly specify the link string, I think like the sample code, without this class, directly by the configuration file?
Thanks
In addition, when I am modularizing, I will add the infrastructure in AbpZeroDbContext. Because this is a separate module, can I just add the table migration I need?
I couldn't understand what kind of infrastructure you are adding. Are you planning to use multiple db context along with AbpZeroDbContext? Can you explain further?
<cite>kumaran: </cite> I do not have any app data folder.
Please check the Log files under App_Data folder in the directory of your ..Web.Host project
If your use case require data separation and transaction similar to MultiTenancy (e.g. setting tenant id using session variable, auto filter data retrieval with OrganizationUnit filter), you may implement similar to how MultiTenancy works. However, it requires quite a lot of work to do so.
Currently aspnetzero doesn't support organization unit with permissions/roles.
See the discussion #1367 And issue created at <a class="postlink" href="https://github.com/aspnetzero/aspnet-zero-core/issues/1227">https://github.com/aspnetzero/aspnet-ze ... ssues/1227</a>