Yes, AutoFac will support more advanced features.
Thanks.
hi
Your project doesn't use IDataSeeder when the app starts.
IDataSeedContributor can only be called when IDataSeeder is used.
You can inject your LaboratoryServiceDataSeeder into LaboratoryServiceDataSeeder to use it, and remove the IDataSeedContributor from it.
The microservice design differs slightly from a regular application.
https://abp.io/docs/latest/framework/infrastructure/data-seeding#idataseeder
Thanks.
hi
We enhanced it in the next 9.3.x version
You can override the method to change it now.
See
https://abp.io/support/questions/10057/LastModification-fields-not-updated-when-changing-one-to-many-relationship#answer-3a1d5bfa-d803-667e-e95a-7f8900a6abc8 https://github.com/abpframework/abp/pull/24104
Thanks
hi
Can you add the AutoFac module dependency?
https://abp.io/docs/latest/framework/fundamentals/autofac-integration
Thanks.
hi
Rename it to MyStripePaymentGateway and add it to Gateways.
Configure<PaymentOptions>(options =>
{
options.Gateways.RemoveAll(x => x.Key == StripeConsts.GatewayName)
options.Gateways.Add(
new PaymentGatewayConfiguration(
StripeConsts.GatewayName,
new FixedLocalizableString("Stripe"),
isSubscriptionSupported: true,
typeof(MyStripePaymentGateway)
)
);
});
Thanks. 🙏
https://abp.io/docs/latest/framework/ui/angular/environment#remoteenvironment
hi
You can add a hybrid implementation of IEmailSender.
Inject the MailKitSmtpEmailSender and SmtpEmailSender into your hybrid class.
Check the current tenant ID to determine which one to use for sending the email.
Thanks.
hi
We will fix it in the next patch version.
You can override the MenuFilterComponent to replace it.
Thanks.