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.
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?
<ItemGroup>
<PackageReference Include="Volo.Abp.Http.Client.Web" Version="5.1.1" />
</ItemGroup>
[DependsOn(
//...
typeof(AbpAccountAdminWebModule),
typeof(AbpSwashbuckleModule),
typeof(AbpAspNetCoreSerilogModule),
typeof(AbpHttpClientWebModule) //add this line
)]
public class MyAppWebHostModule : AbpModule
{
//...
}