hi
I get files in clientproxis mapp but without attributes.
The generate-proxy
command doesn't support generating the attributes of DTO's properties.
If you need them, you can copy the DTO class to the clientproxis
folder.
Thanks.
hi
You shouldn't add EF Core migrations to your module solution.
The module does not depend on any database provider. It uses EF Core. Your App
will decide which database provider to use.
The module template is designed to be reused in every type of app. EF Core or Mongodb. Monolithic or microservice. So it can't decide what database provider should used.
hi
The 9.0 will be released this week.
https://github.com/PomeloFoundation/Pomelo.EntityFrameworkCore.MySql/issues/1841#issuecomment-2525312763
hi
When I do not expose Integration service the consuming microservice throws above exception while calling Integration endpoint. If I expose my integration services at origin it just works fine.
You have to expose the endpoints if you are using the dynamic proxy.
Because the dynamic proxy will try to find the service endpoint.
You can consider using the static proxy.
https://abp.io/docs/latest/framework/api-development/static-csharp-clients
hi
You can inject other services to query tenant info.
eg: ITenantStore
https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.MultiTenancy.Abstractions/Volo/Abp/MultiTenancy/ITenantStore.cs#L9-L13
hi
We will release the new patch version in a few days.
You can try https://github.com/abpframework/abp/issues/21538#issuecomment-2522449980
I have refunded your ticket.
Thanks.
hi
You can share the abp-translation.json
when you add new translated texts.
Thanks.
The bot will close the question regularly. You can reopen it at any time.
hi
it shows the successful message and has no errors in the Logs
Can you share the logs ?
The template project will use NullEmailSender
by default please remember to remove it.
#if DEBUG
context.Services.Replace(ServiceDescriptor.Singleton<IEmailSender, NullEmailSender>());
#endif
hi
What is the outputs of the dotnet restore
command? Can you try this command and share?