Hi,
could you share a test account with me? shiwei.liang@volosoft.com
Logging is not enabled for this container. Please use https://aka.ms/linux-diagnostics to enable logging to see container logs here
failing site start. See container logs for debugging
please turn on the logging and check it
you can refer to the project to migrate your real project.
if you can got any issue you can write it here
The provided antiforgery token was meant for a different claims-based user than the current user.
Hi,
This is a problem related to CSRF.
could you please share the full steps to reproduce? I will check it out
Hi,
we will
Hi,
I guess this is may related to your Entity field name, could you share your Entity definition
Hi,
You can use ABP Suite to add a Product
entity and relate with a Tenant
entity in many-to-many relationships.
https://abp.io/docs/latest/suite/creating-many-to-many-relationship
The ultimate goal of mine is to render product name field in tenant grid and as a multi-select drop downlist in edit and add new actions modals. Is this possible?
To achieve this goal, you must override Tenant
pages.
First you can create your own TenantAppService to return tenant and product data.
public class MyTenantAppService : ApplicationService, IMyTenantAppService
{
public virtual async Task... GetListAsync()
{
var tenants = tenantRepository....;
var products = ProductRepository....;
}
}
Then, override the Tenant
page to get data from your app service.
Here is the document
you can download the saas module source code to get the page code.