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.
Hi,
Your event handler can implement theIAuditingEnabled interface to enable the audit logging for that class by default.
public class MyHandler : IDistributedEventHandler, IAuditingEnabled
{
// add virtual keyword
public virtual async ..... HandleEventAsync(xxx)
{
}
}
Hi,
The Get source command is used to download module source code.
what's your email, i can share the @volo/abp.commercial.ng.ui source code with you.
Hi,
could you please share the error logs?
Hi,
Your code looks like no problem, will it work if you upload a file?