Activities of "maliming"

hi

Can I check it remotely?

https://zoom.us/j/91651262888?pwd=aDF2bE5hd0tQQ1M0QWxJeHBTWmp0Zz09

hi

Have you migrated and seeded the database? It seems to be a permission issue.

You can overiide some base class methods of AbpInputTagHelperService in your MyInputTagHelperService .

https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/TagHelpers/Form/AbpInputTagHelperService.cs

Maybe you can try:

using System.Text.Encodings.Web;
using Microsoft.AspNetCore.Mvc.ViewFeatures;
using Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.TagHelpers;
using Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.TagHelpers.Form;
using Volo.Abp.DependencyInjection;

namespace MyCompanyName.MyProjectName.Web
{
    [Dependency(ReplaceServices = true)]
    [ExposeServices(typeof(AbpInputTagHelperService))]
    public class MyInputTagHelperService : AbpInputTagHelperService
    {
        public MyInputTagHelperService(IHtmlGenerator generator,
            HtmlEncoder encoder,
            IAbpTagHelperLocalizer tagHelperLocalizer)
            : base(generator, encoder, tagHelperLocalizer)
        {
        }

    }

    [Dependency(ReplaceServices = true)]
    [ExposeServices(typeof(AbpInputTagHelper))]
    public class MyInputTagHelper : AbpInputTagHelper
    {
        public MyInputTagHelper(AbpInputTagHelperService tagHelperService)
            : base(tagHelperService)
        {

        }
    }
}

hi

You can try to create a new taghelper and make it executed first.

https://github.com/abpframework/abp/blob/48c52625f4c4df007f04d5ac6368b07411aa7521/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/TagHelpers/Form/AbpIdNameTagHelper.cs#L18

hi

Get token with tenant admin and make request to the Export method and get 200 result code ( this must be 403 but returns 200)

Can you check your token claims on https://jwt.io/ ?

hi

You can create a new project then check the code of XXXDbMigrationService

hi

It seems the Swashbuckle.AspNetCore do some change for IIS virtual directory, Can you try to upgrade and re-try?

https://github.com/domaindrivendev/Swashbuckle.AspNetCore/issues/1953 https://github.com/domaindrivendev/Swashbuckle.AspNetCore/issues/1392#issuecomment-697348303

Answer

hi

abphelper cli has a feature that we can run CRU based on a c# model class

Can you share the details of this feature?

hi

Can you share the source code of your XXXDbMigrationService ?

It should contain such code like below.

foreach (var tenant in tenants)
{
    using (_currentTenant.Change(tenant.Id))
    {
        await SeedDataAsync(tenant);
    }
}
Showing 10021 to 10030 of 10645 entries
Learn More, Pay Less
33% OFF
All Trainings!
Get Your Deal
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.0.0-preview. Updated on September 12, 2025, 10:20