Hi,
editingData
is an object, you can create an object manually
Hi,
I mean delete the database file, not the migration file. : )
An exception was thrown while activating Volo.Saas.Host.EditionController. Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Saas.Host.EditionController. ---> Autofac.Core.DependencyResolutionException: None of the constructors found on type 'Volo.Saas.Host.EditionController' can be invoked with the available services and parameters: Cannot resolve parameter 'Volo.Saas.Host.IEditionAppService service' of constructor 'Void .ctor(Volo.Saas.Host.IEditionAppService)'.
Seems like module dependencies are incorrect, check your solution
[DependsOn(
......
typeof(SaasHostApplicationModule),
.....
)]
public class YourApplicationModule : AbpModule
[DependsOn(
.....
typeof(SaasHostHttpApiModule),
.....
)]
public class YourHttpApiModule : AbpModule
[DependsOn(
....
typeof(YourHttpApiModule),
....
typeof(YourApplicationModule),
....
)]
public class YourHttpApiHostModule : AbpModule
Hi,
try add these to HttpApi.Host
project.
Related: https://github.com/abpframework/abp/issues/19965#issuecomment-2177155101
<PackageReference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="7.5.1" />
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="7.5.1" />
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="7.5.1" />
you can try add it to the home module
Hi,
Volo.Docs module is opensource : https://github.com/abpframework/abp/tree/dev/modules/docs/src
you can custom it to always get docs from file system
For Blazor webapp , you need to consider both server and webassembly
could you share some screenshots? thanks
you can simply delete the database file
very strange.
could you share a simple project with me? i will check it now.
shiwei.liang@volosoft.com