hi
Can you try this?
options.Databases.Configure("FileManagerService", database =>
{
database.MappedConnections.Add("FileManagerService");
database.MappedConnections.Add("AbpBlobStoring"); // add this line.
});
hi
Is the TenantId property of your entity has the set method?
public Guid? TenantId { get; private set; }
https://github.com/abpframework/abp/pull/10490/files
hi
You can override the LanguageSwitchcomponent.
lepton-theme\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Lepton\Themes\Lepton\Components\Toolbar\LanguageSwitch\Default.cshtml
lepton-theme\src\Volo.Abp.AspNetCore.Mvc.UI.Theme.Lepton\Themes\Lepton\Components\Toolbar\LanguageSwitch\LanguageSwitchViewComponent.cs
Volo.Abp.AspNetCore.Mvc.UI.Theme.Lepton.Themes.Lepton.Components.Toolbar.LanguageSwitch.LanguageSwitchViewComponent
hi You can try to generate a DbContext and use it. https://docs.microsoft.com/en-us/ef/core/cli/dotnet#dotnet-ef-dbcontext-scaffold https://www.learnentityframeworkcore.com/walkthroughs/existing-database
hi
Try to update the migratisons and update the database.
hi
You can configure it in your startup module. eg Host or Web.
hi
https://support.abp.io/QA/Questions/3047/Disable-concurrent-user-login
https://github.com/abpframework/abp/issues/12783
We are fixing this.
hi
Can you check this?
https://docs.abp.io/en/commercial/latest/startup-templates/microservice/infrastructure#hosting
Configure<AbpDbConnectionOptions>(options =>
{
options.Databases.Configure("FileManagementService", database =>
{
database.MappedConnections.Add("FileManagement");
});
});
hi
The LDAP move to Idenity pro module from the account module in the new version.
You can download both module source code to check.
We are fixing the download problem now.