Activities of "liangshiwei"

Hi

just

private Author()
{
    /* This constructor is for deserialization / ORM purpose */
}

internal Author(
    string name,
    DateTime birthDate,
    string? shortBio = null)
    : base(0)
{
    SetName(name);
    BirthDate = birthDate;
    ShortBio = shortBio;
}

Hi,

You should be able to publish and run the DB migrator in the CI.

Create multiple environment appsettings files, appsettings.Development.json, appsettings.Production.json etc.

Hi,

you can consider to use Integration Services https://abp.io/docs/latest/framework/api-development/integration-services https://github.com/abpframework/abp/issues/12470

Answer

Hi,

yes, you can use it.

Hi,

ABP uses the database as a cache.

you can simply change the field length

it appears that the IP address is address for the gateway AKS pod.

maybe it's related to Kubernetes pod

https://stackoverflow.com/questions/56845980/how-to-get-client-ip-address-from-inside-a-azure-kubernetes-with-a-clusterip-ser https://github.com/istio/istio/issues/7607 https://stackoverflow.com/questions/68246119/how-do-i-get-client-ip-with-kubernetes

Hi,

Int key value generated by the database. You don't need to care about it.

Hi,

sorry, I didn't receive the email

HI,

You can try removing those records from the database and restarting your application.

By the way, we will release the new patch version today; you can wait for it.

The reason is L(..) method return a object

try this

private readonly IStringLocalizer<NotificationResource> _localizer;

....
.WithProperty(AppTextTemplateConsts.DescriptionPropertyName,_localizer[$"{notification}:{AppTextTemplateConsts.DescriptionPropertyName}"].Value)
...
....



Showing 791 to 800 of 6002 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 18, 2024, 05:54