Activities of "maliming"

So you are using the latest 4.3.0 version of abp instead of v4.2.2?

You can also add this in your project.

<PackageReference Include="Swashbuckle.AspNetCore" Version="6.1.4" />
Answer

but when I set the service as datasource for the report I get this error:

How does the report activate the ReportingDataSourceService?

Answer

hi

Can you share some code?

You can get repository from other IServiceProvider eg scope service provider of Root

hi I think this is same with https://github.com/abpframework/abp/issues/8019#issuecomment-796776155

Can you check?

hi

You can try to disable the telerik source in C:\Users\your name\AppData\Roaming\NuGet\NuGet.Config

> dotnet tool install -g Volo.Abp.Suite --version 4.3.0 --add-source https://nuget.abp.io/<your-private-key>/v3/index.json

Answer

hi

Can you check the logs of your app to see the detail error?

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)
        {

        }
    }
}

Showing 10471 to 10480 of 11101 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 November 07, 2025, 08:20