Activities of "liangshiwei"

Hi,

Is the problem solved?

Hi https://github.com/abpio/abp-commercial-docs/pull/627

Hi,

I could not reproduce the problem.

Here are the steps for manual installation:

  • Install Volo.Chat.Domain to Your Domain project
  • Install Volo.Chat.Domain.Shared to Your Domain.Shared project
  • Install Volo.Chat.EntityFrameworkCore to Your EntityFrameworkCore project
  • Install Volo.Chat.Application to Your Application project
  • Install Volo.Chat.Application.Contracts to Your Application.Contracts project
  • Install Volo.Chat.HttpApi to Your HttpApi project
  • Install Volo.Chat.HttpApi.Client to Your HttpApi.Client project
  • Install Volo.Chat.Blazor and Volo.Chat.Blazor.WebAssembly to Your Blazor project
  • Install Volo.Chat.SignalR to Your HttpApi.Host project
  • Add module dependencies to each project. for example: [DependsOn(typeof(ChatDomainModule))]
  • Run abp bundle for Blazor project

Open your DbContext

protected override void OnModelCreating(ModelBuilder builder)
{
   builder.ConfigureChat();
}

Add and apply a new migration file

ok

You can try to use this:

protected override void OnModelCreating(ModelBuilder builder)
{
    .....
    

    foreach (var entityType in builder.Model.GetEntityTypes())
    {
        if (typeof(IHasConcurrencyStamp).IsAssignableFrom(entityType.ClrType))
        {
           builder.Entity(entityType.ClrType).Property(nameof(IHasConcurrencyStamp.ConcurrencyStamp)).IsRequired(false);
        }
    }
}

And add a new migration file.

Could you please clarify if it is possible to filter data when retrieving a list of EntityChanges using ExtraProperties

No, it will not work.

You need to override the service.

First: https://docs.abp.io/en/abp/latest/Entity-Framework-Core#mapefcoreproperty Then, you can filter data via shadow-properties : https://learn.microsoft.com/en-us/ef/core/modeling/shadow-properties#accessing-shadow-properties

Hi,

Sorry, will it work if you try this?

public override void ConfigureServices(ServiceConfigurationContext context) 
{ 
    LimitedResultRequestDto.MaxMaxResultCount = int.MaxValue; 
    ExtensibleLimitedResultRequestDto.MaxMaxResultCount = int.MaxValue; 
} 
 

I want to add ScreenUrl and UserId to ExtraProperties of EntityChanges

For example:

public class MyAuditLogContributor : AuditLogContributor
{
    public override void PostContribute(AuditLogContributionContext context)
    {
        foreach (var change in context.AuditInfo.EntityChanges)
        {
            change.SetProperty()
        }
        
    }
}

and I would like to be able to retrieve more than 1000 records because the current MaxResultCount limit is 1000.

You can try:

public override void ConfigureServices(ServiceConfigurationContext context)
{
    ExtensibleLimitedResultRequestDto.MaxMaxResultCount = int.MaxValue;
}

Hi,

Sorry, I don't quite understand your question.

Could you explain it more clearly? Thank you.

Hi,

Update: There is a bug in angular that waiting to be fixed.
It is not recommended to upgrade to 7.4.3 now, please upgrade to 7.4.2 instead of 7.4.3

Showing 2841 to 2850 of 6692 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