How I reproduce it? please provide the steps.
I don't understand what is the permissions set are not reflected in the BIMS_BDairy and BIMS.
But I forgot on thing that is you need to remove redis module.
Have you received the source code I sent? is it work?
HI,
I actually don't know why this problem occurs, but if you can share a project to reproduce it, I can help you solve the problem, shiwei.liang@volosoft.com
I do have the source code for Lepton Theme added to my solution via the ABP Suite Modules. If it is going to be easier to remove it from my solution I am happy to do that
May be you can try it.
Is there a roadmap or ETA available as to when the Forms Module will support Angular?
No, not yet. maybe only the administration side in the future.
Could we install the forms module on the server side (which I assume would set up the database tables and services) and build the Angular UI components ourselves to connect to the module endpoints?
Of course you can, you can implement Angular UI for Forms module.
but first the app should run in localhost right?
I mean, this problem only occurs in the localhost domain, does it break the work of the application?
I would like to add, how I had to write controller code and DI application service and write:
We usually write HttpApi Controller which is used for dynamic Http proxy for tiered project, It is good practice to write API Controller for each application.
You can refer to these: https://github.com/abpframework/abp/blob/dev/modules/identity/src/Volo.Abp.Identity.Application/Volo/Abp/Identity/IdentityRoleAppService.cs https://github.com/abpframework/abp/blob/dev/modules/identity/src/Volo.Abp.Identity.HttpApi/Volo/Abp/Identity/IdentityRoleController.cs
Hi,
The Chat UI does not support Blazor-server yet. We will implement it in next version
Hi,
How can the Entity Action Button in the Blazorize grid be custom styled?
You can write styles in global-styles.css
the Entity Action button in Blazor Server does not show a single click action button when there is only one action item defied
You can set the ActionType
to button.
https://github.com/abpframework/abp/blob/48c52625f4/framework/src/Volo.Abp.BlazoriseUI/Components/EntityActions.razor.cs#L30
Hi,
I guess this is because the cookies are shared on localhost, this problem does not occur when using a domain.
I think it will not affect the app work, right?
Hi,
Can you explan it in detail? thanks.
Hi,
I have checked your project, your architecture is actually wrong, this more has nothing to do with ABP but your architecture.
Let me explain it:
You have two applications, each with its own database, but you want to do data sharing, tenants, permissions, users, etc. this is impossible (you can create a copy of the data, but I think this is not what you want).
Actually I think the microservice template is more suitable for you, or you should use BIMS_BDairy as a module instead of an application.
However, I still solved your problem, please check your email, I have send the source code to you.
How I solved it:
BIMS_BDairyDbContext
:[ConnectionStringName("Default")]
public class BIMS_BDairyDbContext :
AbpDbContext<BIMS_BDairyDbContext>
{
// Remove all `ReplaceDbContext` and interface.
// Remove region `Entities from the modules`
}
BIMS_BDairy.Application.Contracts
project to BIMS
solution. and open BIMSApplicationContractsModule
class:[DependsOn(
......
typeof(BIMS_BDairyApplicationContractsModule) // add this line
)]
public class BIMSApplicationContractsModule : AbpModule
That's all.