Activities of "liangshiwei"

Hi,

I don't see the correct configuration.

You can try:

  • Remove Volo.Abp.TenantManagement.EntityFrameworkCore from SupplierEvaluation.HttpApi.Host project.
  • Install Volo.Abp.AspNetCore.Mvc.Client package to the SupplierEvaluation.HttpApi.Host project
  • Add typeof(AbpAspNetCoreMvcClientModule) to the SupplierEvaluationHttpApiHostModule
  • Configure remote service in the appsettings.json of SupplierEvaluation.HttpApi.Host project.
{
  "RemoteServices": {
    "Default": {
      "BaseUrl": "https://....." (gateway URL)
    } 
  } 
}

Hi,

I used the project your provided and it's working for me.

You should make RemoteService to true.

Hi,

ok,I guess you used the suite to install the identityserver module.

Hi,

it's weird, can you share the abp-sample-projects with me? I will check it out. thanks.

If is it about your docker, you need to create self-signed certificate for your local machine. If it is about the production environment, you can use lets-encrypt as a cluster-issuer.

You can check eShopOnAbp docker readme that has information about how to create self-signed certificate.

You need to run the AuthServer(https://localhost:44361).

shared

Hi,

I'd like check it remotely, can we have a meeting via zoom? shiwei.liang@volosoft.com

Hi,

My email is shiwei.liang@volosoft.com

Which one of the three questions are answering with that link? Number 1?

All questions, RegisterDto is extensible, you can set any properties you need.

I would need to include the First and Surname of the user. Would I have to extend the current AccountAppService and override the RegisterAsync method

Yes, you have to.

For my 3rd question, for extending the UserIdentity, I can just use SetProperty on the IdentityUser, I believe since I am using MongoDb, it should make a difference in regards to searching by the stripeId as it should just add a property onto the document... correct?

For MongoDB, they are stored as separate fields of the document. https://docs.abp.io/en/abp/latest/Customizing-Application-Modules-Extending-Entities#extra-properties

For example:

var builder = Builders<IdentityUser>.Filter;
var query = builder.Eq("stripeId", Value);
var users = await (await userRepository.GetCollectionAsync()).Find(query).ToListAsync();
Showing 4391 to 4400 of 6693 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.1.0-preview. Updated on November 07, 2025, 08:20