Activities of "liangshiwei"

Hi,

could you please share a minimal reproducible project with me? i will check it.

shiwei.liang@volosoft.com

another code to fix, but did not work on the deployed site

Hi, you can try override the LogoutController

https://github.com/abpframework/abp/blob/dev/modules/openiddict/src/Volo.Abp.OpenIddict.AspNetCore/Volo/Abp/OpenIddict/Controllers/LogoutController.cs#L14

Hi,

editingData is an object, you can create an object manually

Hi,

I mean delete the database file, not the migration file. : )

  • delete the bookstore.db
  • run dbmigrator

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

Showing 741 to 750 of 6014 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 19, 2024, 12:56