maliming

Results 526 comments of maliming

hi https://docs.abp.io/en/abp/latest/Best-Practices/Index https://abp.io/books/implementing-domain-driven-design

hi You have to change all the code like this. Never use `async void` as the return type for async methods.

```cs public async Task UpdateCostCenter(CostCenterDto dto) { var costcenter = _costCenterRepository.GetAsync(dto.Id); ObjectMapper.Map(dto, costcenter); await _costCenterRepository.UpdateAsync(costcenter); } ```

hi Why do you want to change it? https://docs.abp.io/en/abp/latest/Audit-Logging#audit-log-contributors

hi If the projects exist. You can try to build it using the `dotnet build` command. ![image](https://github.com/abpframework/abp/assets/6908465/444ccb22-bd7f-4d2f-92e3-3f3c6eea360c)

Ensure the `abp_git_clone` repostory is on `rel-8.1` branch when you use `8.1.2` template project.