Activities of "liangshiwei"

Hi,

How I reproduce the problem,can you provide steps? thanks.

Answer

Hi,

but i am looking for querystring version parameters?

Angular service proxies does not support API versioning yet, see : https://github.com/abpframework/abp/issues/11969 You need to use RestService to send http requests manually

Hi,

This is not a bug, this is design by identityserver

Hi,

You can replace AbpModalTagHelperService with your own implementation to build HTML code(also AbpModalHeaderTagHelperService, AbpModalFooterTagHelperService, AbpModalBodyTagHelperService): https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Bootstrap/TagHelpers/Modal/AbpModalTagHelperService.cs

For example:

[ExposeServices(typeof(AbpModalTagHelperService))]
public class MyAbpModalTagHelperService : AbpModalTagHelperService
{
    protected override void SetContent(TagHelperContext context, TagHelperOutput output, TagHelperContent childContent)
    {
        //.....
        base.SetContent(context, output, childContent);
    }
}

Hi,

It this work for you?: (remove duplicate keys and run the DbMigrator project)

public override void InitializeCollections(IMongoDatabase database)
{
    base.InitializeCollections(database);

    var model = new CreateIndexModel<DatabaseBlobContainer>
    (
        "{ Name: 1 }",
        new CreateIndexOptions { Unique = true }
    );

    database.GetCollection<DatabaseBlobContainer>(BlobStoringDatabaseDbProperties.DbTablePrefix + "BlobContainers").Indexes.CreateOne(model);
}

Hi,

These dependencies should not be added. you need to remove these.

We have an example of a microservice that uses both EF Core and MongoDB, you can refer it: https://github.com/abpframework/eShopOnAbp/tree/main/services/catalog/src

Hi,

You can use abp clean command and try again.

Hi,

Thanks for your report we will fix it. BTW, your ticket has been refunded

Hi,

Should be version 5.1.5.

Hi,

Sorry, I will check it again.

Showing 5221 to 5230 of 6693 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 December 17, 2025, 07:08
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.