Activities of "EngincanV"

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>

It seems your project on localhost:44393 is not running therefore it could not send any HTTP request. Please ensure the project on localhost:44393 is running and try again.

Please check the appsettings.secrets.json file is exists in the directory of your web project and the file has a section named AbpLicenseCode:

  • appsettings.secrets.json (it should be in your web project directory)
{
  "AbpLicenseCode": "<your-license-code>" 
}
  • Open your Program.cs file and check the .AddAppSettingsSecretsJson() is used in the main method:
public class Program
{
    public async static Task<int> Main(string[] args)
    {
        //logging configurations ...
        
        try
        {
            Log.Information("Starting web host.");
            var builder = WebApplication.CreateBuilder(args);
            builder.Host
                .AddAppSettingsSecretsJson() //ensure this line is exist
                .UseAutofac()
                .UseSerilog();
            
            //...                
        }
        
        //...
    }
}

Not sure why but after having reinstalled Visual Studio, the migration problem seemed to go away.

It's nice to hear the DB context problem is fixed.

We never really bothered with angular for this sample, but it seems it is using Angular 11 in the samples so I guess it hasn't been updated in a while.

Todo App sample is in the v5.0.0 right now, we try to keep our samples up to date and we usually update our samples after the stable releases. Thanks for your suggestion, we'll upgrade it asap.

Hi @vincent.goh, have you tried it?

Showing 531 to 540 of 730 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 11, 2024, 11:11