Activities of "liangshiwei"

Hi,

Ok, but no error details and stack are logged. sorry, I didn't find anything.

You can check this to get the details for the exception. https://github.com/dotnet/efcore/issues/33319#issuecomment-2030777176

Answer

Hi,

There is a discussion here:

https://github.com/abpframework/abp/issues/13017

You need to adjust the server's time zone correctly.

Please let me know if it's not work.

Hi,

You can use the BLOB Storing Azure Provider: https://docs.abp.io/en/abp/latest/Blob-Storing-Azure

Also please mention where is the mapping of Users and their corresponding blobs?

ABP uses the BLOB Storing system to save the user's profile picture, and the provider is the database by default https://docs.abp.io/en/abp/latest/Blob-Storing

ABP uses the user ID as a profile picture file name, so there is no need to store the link in the database

Hi,

First, you need to configure the module entity extension.

https://docs.abp.io/en/abp/latest/Module-Entity-Extensions#quick-example

For example:

public static void ConfigureExtraProperties()
{
    OneTimeRunner.Run(() =>
    {
        ObjectExtensionManager.Instance.Modules()
            .ConfigureSaas(saas =>
            {
                saas.ConfigureTenant(tenant =>
                {
                    user.AddOrUpdateProperty<string>( //property type: string
                        "BlobConnectionString", //property name
                        property =>
                        {
                            //...other configurations for this property
                        }
                    );
                });
            });
    });
}

You can check this: https://stackoverflow.com/questions/68659436/how-to-encrypt-a-class-property-using-mongodb-csfle-in-dot-net-core

Hi,

You can configure the AbpMongoDbContextOptions

Configure<AbpMongoDbContextOptions>(options =>
{
    options.MongoClientSettingsConfigurer = settings =>
    {
        settings.AutoEncryptionOptions = ....
    };
});

Hi,

I will ask the Angular team to help you.

Duplicate of :https://support.abp.io/QA/Questions/7158/after-login-button--the-api-url-is-blank-in-the-react-expo-emulator-please-resolve-this

Closing this, and refunded your ticket.

Hi

Looks like a transaction problem.

Could you change the EF Core logger level to debug and share the full logs?

Hi,

Sorry.I missed a bit, you need to configure the static proxy.

https://docs.abp.io/en/abp/latest/API/Static-CSharp-API-Clients#without-contracts-example

context.Services.AddStaticHttpClientProxies(
    typeof(ContractsModule).Assembly
);
Showing 2031 to 2040 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 October 30, 2025, 06:33