Activities of "alper"

your question credit has been refunded

I see that the dropdown code is generated but there's problem with the loading. You can check your backend logs to understand the issue.

Maybe database migrations didn't apply well. Can you check if EthinicityId exists on your entity. Also run DbMigrator to ensure all migrations are applied.

if these won't work, send me your both entity.json files (ethinicity and main entity)

@unlonlyness did you add the source-code of Volo.Account.Pro module to your module?

it should roll back.

while we check it, here's a workaround to make it transactional in your custom UOW scope.

private readonly IUnitOfWorkManager _unitOfWorkManager;
   
public virtual async Task FooAsync()
{
            using (var uow = _unitOfWorkManager.Begin(requiresNew: true, isTransactional: true))
            {
                //...do your work here...
                
                await uow.CompleteAsync();
            }
 }

hi,

First of all there's strict rule. Suite version and ABP version must be same. Because Suite is the generator which generates code from the templates that are in your ABP project.

dotnet tool uninstall --global Volo.Abp.Cli 
dotnet tool uninstall --global Volo.Abp.Suite 
dotnet tool install --global Volo.Abp.Cli 
abp suite install
Answer

@unlonlyness

run the following commands :

dotnet tool uninstall --global Volo.Abp.Cli 
dotnet tool uninstall --global Volo.Abp.Suite
dotnet tool install --global Volo.Abp.Cli
abp suite install
Answer

@murat.yuceer

This is fixed. First login to abp.io and then download sample https://abp.io/api/download/samples/easy-crm

see https://support.abp.io/QA/Questions/791

This is because your CLI token has been expired. Relogin with the following command:

abp login <username> -p <password>
Showing 1171 to 1180 of 1868 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 18, 2024, 05:54