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'
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
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
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:
Entity JSON
%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
{
}