Activities of "EngincanV"

Hi, this was a known problem and it's fixed in v5.2.0-rc.2. You can either upgrade your solution or follow the below steps to fix this problem:

  • Add the following packages to your *.Web.Host.csproj file:
<PackageReference Include="Volo.Abp.SettingManagement.HttpApi.Client" Version="5.1.1" />

<PackageReference Include="Volo.Abp.SettingManagement.Web" Version="5.1.1"/>
  • Add the related depends on statements:
[DependsOn(
    //other modules...
    typeof(AbpSettingManagementWebModule), //add this line
    typeof(AbpSettingManagementHttpApiClientModule) //add this line
    )]
public class MyProjectNameWebHostModule : AbpModule
{
    //...
}

I suggest you upgrade your application to the latest stable version which was released today (5.2.0). This problem and other small problems are fixed in the latest version.

Answer

Hi, this problem is related to VS2021, please see this comment to fix the problem also please revert the change that I've suggested above.

Hi, can you provide the below information?

  • ABP Framework version: vX.X.X
  • UI type: Angular / MVC / Blazor

Hi @meiyuan@surer.ng, please see #1203.

I suppose you didn't plan this feature. I would suggest you would provide devs a chance to

Hi @Radoslav, yes we didn't plan this feature. I'll create an internal issue for your suggestion.

What would I need to do regarding writing remaining code (after code generation) to allow for editing/viewing extra properties (and maybe navigation properties)

The following resources might be helpful for you to understand the extension system and apply for your own logic:

  • Object Extensions
  • https://github.com/abpframework/abp/pull/4861 (You can examine this PR to see how you can show the extra properties on UI and also good to see the flow)

Hi @safi, unfortunately, the menu can't be updated without refreshing the page currently. There is an issue about this, you can follow the issue to see progress.

Also, you can see this comment if you want to look for a workaround. You can apply a similar solution.

Hi, I guess this problem is related to VS2021, if you use VS2021 as IDE can you try to run the project from CLI (dotnet run)?

Hi @MarturAbpUser, I've checked your organization and it seems your account was not added as a developer. I've added you as a developer to your organization. Can you try again to login? Btw, your credit has been refunded!

Hi, I've checked your organization and everything seems alright, can you be sure about your password? (and specify your organization name as "Martur")

ABP Problem.png

Hi @MarturAbpUser, it seems you've logged in without specifying the organization. This problem occurred because, in the above image there is not any organization information.)

Can you apply the below steps and then re-try to download the template again:

  • Logout with the following commands:
abp logout
  • Login with the following command (by specifying the organization):
abp login <username> -p <password> -o <organization>
Showing 521 to 530 of 724 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 11, 2024, 11:11