Activities of "alper"

@ninomartini this must be fixed in the latest version. tomorrow there'll be 2.7.1 for NPM packages. then you can update it or wait for the v2.8.0

@roop.yekollu, can you run

abp suite remove

then

abp suite install

If you created it via Suite, it creates the entity DTO files in Acme.BookStore.Application.Contracts\EntityNamePlural\ But AppUser seems like database table name, not an entity name! Did you name the user entity AppUser? If you name it AppUser then Suite generates AppUserDto and it's being used in IAppUserAppService.cs Open your Visual Studio and search for AppUserDto in IAppUserAppService

Task<AppUserDto> CreateAsync(AppUserCreateDto input);

we are using the same strategy. we have a table/collection that stores the SequentialNumber . This way, it's being DBMS agnostic. The DTO's generated via ABP Suite is located in *.Application.Contracts project. Forexample BookDto is here src\Acme.BookStore.Application.Contracts\Books\BookDto.cs

How to show entity change history on a new entity in ABP MVC? https://gist.github.com/ebicoglu/e14de3f18a18242e38e17eccf41c0c6d

@AndrewT, it's in the roadmap but not in high priority. Sorry, I can't tell a deadline.

@AndrewT here's the release notes => https://docs.abp.io/en/commercial/latest/release-notes

do you have an Id property in your entity ? if so you also have number property which is identity. I think you are on the wrong way. I would not make number as identity column. Create a SequentialNumberRepository and keep the last number in a seperate table I'll not implement this manager but the signature can be

    public interface ISequentialNumberManager : IDomainService
    {
        Task<int> GetNextAsync(string sequenceName);
    }
    
   public class SequentialNumber : AggregateRoot<Guid>, IMultiTenant
    {
        public virtual Guid? TenantId { get; protected set; }

        public virtual string SequenceName { get; protected set; }

        public virtual int CurrentValue { get; protected set; }

        protected SequentialNumber()
        {

        }

        public SequentialNumber([NotNull]string sequenceName, Guid? tenantId = null)
        {
            SequenceName = Check.NotNull(sequenceName, nameof(sequenceName));
            TenantId = tenantId;
            CurrentValue = 1;
            ConcurrencyStamp = Guid.NewGuid().ToString();
        }

        public void Increment()
        {
            ++CurrentValue;
        }
    }

do you want to open change details modal for your new entity?

did you check the docs if it helps https://docs.abp.io/en/commercial/latest/modules/audit-logging

Showing 1931 to 1940 of 2058 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.0.0-preview. Updated on September 18, 2025, 07:10