Activities of "EngincanV"

Can you send your application to engin.veske@volosoft.com?

Did you add DependsOn[typeof(ProjectControlDapperModule)] to your web module class as below:

//other depends on statements...
[DependsOn(typeof(ProjectControlDapperModule))]
public class MyWebModule : AbpModule 
{
    //...
}

But where can I get the update?

After we've updated the EasyCrm application, we'll inform you.

Can you create a new question and explain it in detail?

I posted a new ticket here https://support.abp.io/QA/Questions/2749/Getting-json-errors-while-deploying-code-on-testing-server

Thanks @safi, I close this issue since it's resolved.

No I didn’t have any extra properties

Thanks, I will test and inform you asap.

Hi @learnabp, I will test it and write you back asap. Did you add any extra properties to your Plan entity?

Why always auto close the ticket?

Hi @GerryGe, we generally close a ticket, when we create an issue for a problem in our internal repository, in another word when we take an action about the problem. We've created an issue for your question and keep it open until it is fixed.

Sorry for the misunderstanding. Best regards.

Hi, you don't need to inherit your repository class from the IRepository<TEntity, TKey> interface. If you remove it, you don't get the DependencyResolutionException.

Answer

Hi @agilmore, can you check the source-map version? (you can see the version from yarn.lock file)

Hi, can you add the Volo.Abp.Http.Client.Web package to your *.Web.Host project?

  • Add the following line to your .csproj file:
<ItemGroup>
    <PackageReference Include="Volo.Abp.Http.Client.Web" Version="5.1.1" />
</ItemGroup>
  • Add DependsOn[typeof(typeof(AbpHttpClientWebModule))] to your *WebHostModule class:
[DependsOn(
    //...
    typeof(AbpAccountAdminWebModule),
    typeof(AbpSwashbuckleModule),
    typeof(AbpAspNetCoreSerilogModule),
    typeof(AbpHttpClientWebModule) //add this line
    )]
public class MyAppWebHostModule : AbpModule
{
    //...
}
Showing 551 to 560 of 730 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 11, 2024, 11:11