Ends in:
7 DAYS
14 HRS
33 MIN
15 SEC
Ends in:
7 D
14 H
33 M
15 S

Activities of "alper"

You need to update your local EF Core CLI tool to the latest. Run the below command in command prompt:

dotnet tool update --global dotnet-ef

When adding a new entity using Suite, it says "The EF Core tools version '3.1.0' is older than that of the runtime '3.1.2'

I couldn't reproduce your problem. There'll be new version on Monday 06 April. Can you try with the latest version. In the new version, there's also a new feature: "Unit test". Suite creates unit tests of your entity.

Hi,

In this doc it's explained https://docs.abp.io/en/abp/latest/Entity-Framework-Core-Migrations#create-a-new-entity

We are creating a new feature to extend the existing entities. For now, you can check out https://docs.abp.io/en/abp/latest/Customizing-Application-Modules-Extending-Entities

Answer

just to change logo, delete the existing logo file and copy your own logo file.

does replacing the tenant component work for you? https://docs.abp.io/en/abp/latest/UI/Angular/Component-Replacement

Answer

for MVC you can override Application name and logo

    public class AbpIoDocsBrandingProvider : DefaultBrandingProvider
    {
        public override string AppName => "Acme - MyBookStore";
        public override string LogoUrl => "/images/myLogo.png";
    }
    

To reproduce the problem, we need some extra info:

Your project name:

Template options:

  • UI Framework: MVC / Angular
    • (If MVC) Tiered: Yes / No
    • (If Angular) Separated Identity Server: Yes / No
  • Database Provider: EF Core / MongoDB

Entity JSON

  • Write us your entity JSON. It's located here => %UserProfile%\.abp\suite\{Your-Project-Name}\entities\{Your-Entity-Name}.json

The problem is dependency! Cannot resolve parameter 'Gmcs.Themis.ScreenBuilder.Samples.ISampleAppService' Check that SampleAppService is registered correctly.

ISampleAppService.cs

public interface ISampleAppService : IApplicationService
{
         
}

SampleAppService.cs

public class SampleAppService  : ApplicationService, ISampleAppService
{
         
}
Showing 1911 to 1920 of 1975 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 20, 2024, 13:06