Activities of "liangshiwei"

Hi,

You can override the top layout, it is replaceable.

Seems there are issues for the customize angular UI. Like some keys not in html pages. Like routesKey and top layout do not have the key: navItemsKey

yes, they are used for side-menu layout, i don't know why the top-menu doesn't support custom, i will ask leptonxtheme team

Do you have code for this demo?

ABP customers can also download the source code of the https://x.leptontheme.com/ from https://abp.io/api/download/samples/leptonx-demo.

https://abp.io/docs/latest/ui-themes/lepton-x/index#source-code

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.

Showing 781 to 790 of 5995 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 18, 2024, 05:54