Activities of "alper"

I think your app is corrupted. try deleting this directory => %UserProfile%\.dotnet\tools\.store\volo.abp.suite then install again

Hi Sean,

Ok! I see it now...

So let's do it step by step. First of all, ABP Suite asks you a DTO of the dependent entity. As AppUser entity comes from the template and has not DTO, we'll create the corresponding DTO class. I'll explain it based on the BookStore project (change all Acme.BookStore placeholders to your actual project name)

Create a new folder named Users in the root directory of Acme.BookStore.Application.Contracts project. Add the below DTO file:

public class AppUserDto : IdentityUserDto
{

}

Now, we need to create a mapping for this new DTO. Go to BookStoreApplicationAutoMapperProfile.cs and add the below line:

CreateMap<AppUser, AppUserDto>().Ignore(x => x.ExtraProperties);

Now we can pick this DTO from navigatin property modal

Click the Save and Generate button


And here's how it looks like

finally you might need to add this localization to the en.json

"AppUser":  "User" 

@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

Showing 1931 to 1940 of 2060 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