Hi,
I will discuss with ABP team and back to you.
Hi,
Sorry, I can't reproduce the problem. What's your suite version?
Hi,
We have a document for this: https://docs.abp.io/en/commercial/latest/startup-templates/microservice/add-microservice
Please let me know if I understand wrong your question.
Hi,
It seems your question has been answered, I'm closing the question.
I'm closing the question, free open it if still a problem.
Hi,
It looks like your Redis server is not available.
Here is some helpful information you can check: https://github.com/StackExchange/StackExchange.Redis/issues/1453
it generates a lot more code that looks an over kill for a table like that merely being setup once and will be update probably in years.
Maybe you can use Enum, it is easier than lookup table.
For exmaple:
https://github.com/abpframework/abp/blob/dev/modules/cms-kit/src/Volo.CmsKit.Domain/Volo/CmsKit/Blogs/BlogPost.cs#L34 https://github.com/abpframework/abp/blob/dev/modules/cms-kit/src/Volo.CmsKit.Domain.Shared/Volo/CmsKit/Blogs/BlogPostStatus.cs https://github.com/abpframework/abp/blob/dev/modules/cms-kit/src/Volo.CmsKit.Admin.Web/Pages/CmsKit/BlogPosts/Index.cshtml#L42
Hi.
It looks not a problem with ABP, but Blazor: See: https://github.com/dotnet/aspnetcore/issues/38842#issuecomment-1342540950
You can try this:
Configure<HubOptions>(options =>
{
options.DisableImplicitFromServicesParameters = true;
});
Hi,
As I understand, you want to add a module reference to another module. if so, it's possible. actually, we already did.
For example:https://github.com/abpframework/abp/blob/dev/modules/identity/src/Volo.Abp.Identity.Web/AbpIdentityWebModule.cs#L23 The Identity module references the permission module.
But you can't use the suite to do it, you need to add references manually.