Activities of "liangshiwei"

Hi

Here is ABP how to check connection strings https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.EntityFrameworkCore.SqlServer/Volo/Abp/EntityFrameworkCore/ConnectionStrings/SqlServerConnectionStringChecker.cs#L10

The error is a result of pushing the Check button:

could you share the full logs? thanks.

okay, i will check it

Hi,

after my check,you can use IPermissionManager without any problem

Hi,

I guess these databases do not exist yet. You need to run dbmigrator to create them

Hi see https://abp.io/docs/latest/framework/architecture/modularity/extending/module-entity-extensions

view it in another tab in create tenant Modal

you need to override the CreateModalModel

move these code to a new tab

you can download saas module to get CreateModalModel page code

Here is the document about how to override page. https://abp.io/docs/latest/framework/ui/mvc-razor-pages/customization-user-interface

Hi,

They are using RemotePermissionChecker https://github.com/abpframework/abp/blob/rel-8.3/framework/src/Volo.Abp.AspNetCore.Mvc.Client.Common/Volo/Abp/AspNetCore/Mvc/Client/RemotePermissionChecker.cs#L8

you can override it.

Hi,

Here is the document about the override page.

https://abp.io/docs/latest/framework/ui/mvc-razor-pages/customization-user-interface

you can download the account source code to get the page code.

HI,

ABP provider a button to check your connection string

For connection string format, you can check this https://www.connectionstrings.com/

Hi

The problem has been resolved.

Hi,

Of course, you can replace it.

for example:

[Dependency(ReplaceServices = true)]
[ExposeServices(typeof(IdentitySessionDynamicClaimsPrincipalContributor))]
public class MyIdentitySessionDynamicClaimsPrincipalContributor : IdentitySessionDynamicClaimsPrincipalContributor
{
    public override Task ContributeAsync(AbpClaimsPrincipalContributorContext context)
    {
        ....
        return base.ContributeAsync(context);
    }
}
Showing 41 to 50 of 5633 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 19, 2024, 10:13