Hi,
This error has nothing to do with ABP.
ABP also provides documents, you can refer to: https://docs.abp.io/en/commercial/latest/startup-templates/application/deployment-docker-compose?UI=NG&DB=EF&Tiered=Yes#running-docker-compose-on-localhost
Basically, you need a valid HTTPS certificate. You can create a local certificate for testing:
And specify the certificate path and password in the environment variable.
ok, I received the email.
Hi,
You can consider specifying autosave
to create an entity.
_myRepositpry.InsertAsync(..., autoSave: true)
Hi,
Sorry, but there is no such filter.
You can do something like this: https://docs.abp.io/en/abp/latest/Distributed-Event-Bus#publishing-events-inside-entity-aggregate-root-classes
public class MyEntity : AggregateRoot<Guid>
{
public bool IsActive { get; private set; }
public void ChangeIsActive(bool isActive)
{
IsActive = isActive;
AddDistributedEvent(....);
}
}
Hi,
You should add a dynamic permission group and add sub-permissions to it.
For example:
For MVC Tired, the web project loads permissions from remote(HttpApi.Host).
You need to empty the Redis cache(or restart the HttpApi.host project), wait for 30 seconds, and you will see the dynamic permissions.
Volo.Abp.AbpException: Could not find file '/libs/abp/core/abp.css'
Hi,
You can try abp install-libs
to restore the NPM packges.
Hi,
Did you check the demo? https://github.com/EngincanV/ABP-Syncfusion-Components-Demo/