hi lan.dang
Can you share with me a simpleproject that includes your jwt code?
liming.ma@volosoft.com
I suggest you first understand JWT authentication in asp net core.
https://www.google.com/search?q=JWT+authentication+in+asp+net+core.&oq=JWT+authentication+in+asp+net+core.&aqs=chrome..69i57.256j0j7&sourceid=chrome&ie=UTF-8
hi
There is should be a IdentityServerDataSeedContributor
file in your project that seeds these info.
hi
https://community.abp.io/posts/how-to-override-localization-strings-of-depending-modules-ba1oy03l https://github.com/abpframework/abp-samples/tree/master/DocumentationSamples/ExtendLocalizationResource
hi
https://community.abp.io/posts/unifying-dbcontexts-for-ef-core-removing-the-ef-core-migrations-project-nsyhrtna#the-appuser-entity--custom-properties
There should be 3rd database tables which can be shared between host and tenant
This is wrong.
IsTenantOnlyDatabase(): Returns true if you should only create tenant-related tables, but should not create host-related tables. It is equivalent of checking modelBuilder.GetMultiTenancySide() == MultiTenancySides.Tenant.
https://docs.abp.io/en/abp/5.1/Entity-Framework-Core-Migrations#separating-host-tenant-database-schemas
Yes, If you commented out the IdentityServer
You need to recreate all migrations for the host and tenant and IdentityServer+identity.
dotnet ef migrations add Initial --context QADbContext
dotnet ef migrations add Initial --context QATenantDbContext --output-dir Migrations/Tenant
dotnet ef migrations add Initial --context QAIdentityDbContext --output-dir Migrations/Identity
if changes are only in *.EntityFrameoworkCore project only
Yes,
You have also provided 3 commands. how exactly i should run them
Run it on EntityFrameoworkCore project folder to add init migrations.