- ABP Framework version: v8.3.1
- UI Type: MVC
- Database System: EF Core (SQL Server.)
- Tiered (for MVC) or Auth Server Separated (for Angular): yes/no
- Exception message and full stack trace:
- Steps to reproduce the issue: *Will share you Sample Template project on mail
21 Answer(s)
-
0
-
0
Shared you on mail
-
0
Method 'GetServiceProviderHashCode' in type 'ExtensionInfo' from assembly 'Microsoft.EntityFrameworkCore.SqlServer.NetTopologySuite, Version=5.0.7.0, Culture=neutral, PublicKeyToken=adb9793829ddae60' does not have an implementation.
Method 'GetServiceProviderHashCode' in type 'ExtensionInfo' from assembly 'EntityFrameworkCore.SqlServer.HierarchyId, Version=2.1.0.0, Culture=neutral, PublicKeyToken=0c30ba8633cb7b1e' does not have an implementation
-
0
Please upgrade all microsoft packages to the 8.0.x
-
0
-
0
Still there are errors my side if your project is running smoothly please share with me Is it neccessory to use feature management and background job related modules to implement if there is no use in my project
-
0
Still there are errors my side if your project is running smoothly please share with me
what error?
Is it neccessory to use feature management and background job related modules to implement if there is no use in my project
you can remove them if they are not necessary for you
-
0
-
0
Shared you current code on mail
-
0
-
0
-
0
Hi,
Permission management module is a basic module, and identity module depends on it. if you don't want use permission management you have to remove identity module too
- So is it necessary to have tables for them like following.
- According to the project given by me to you I want localization, Caching, Exception Handling So which are required and dependent packages for them. Because its taking too much time to solve one issue there is no fixed documentation which provide dependencies of other packages.
-
0
So is it necessary to have tables for them like following.
yes, it's. otherwise, you need to delete the identity module too.
According to the project given by me to you I want localization, Caching, Exception Handling So which are required and dependent packages for them. Because its taking too much time to solve one issue there is no fixed documentation which provide dependencies of other packages.
Hi, usually the documentation will mention the required packages:
- https://abp.io/docs/latest/framework/fundamentals/localization
- https://abp.io/docs/latest/framework/fundamentals/caching
- https://abp.io/docs/latest/framework/fundamentals/exception-handling
Exception handing is a part feature of
Volo.Abp.AspNetCore.Mvc
package -
0
es, it's. otherwise, you need to delete the identity module too.
If my identity server is different I just want authentication and authorization working on this api so do i Need identity module or not. I already have identity server with identity module which i am using for the authentication purpose.
-
0
if you need to use the identityuser/roles etc.. and its endpoints in this project, you need to keep it, as I see, you don't need it (You need to evaluate carefully).
-
0
-
0
-
0
Still there are multiple error added migration permission tables now getting dependecy error for the audit logging module sharing you logs. It will be helpfull if you share me modified code which will be error free
10:53:45 INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule [10:53:45 DBG] Started background worker: Volo.Abp.IdentityServer.Tokens.TokenCleanupBackgroundWorker [10:53:45 INF] Initialized all ABP modules. [10:53:45 INF] Now listening on: https://localhost:5001 [10:53:45 INF] Now listening on: http://localhost:5000 [10:53:45 INF] Application started. Press Ctrl+C to shut down. [10:53:45 INF] Hosting environment: Development [10:53:45 INF] Content root path: D:\MyWorkspace\CivitCoreTemplate\Civit.Core.Template\Host\Civit.Core.Template\Civit.Core.Template.HttpApi.Host [10:53:46 ERR] An exception was thrown while activating Volo.Abp.Auditing.AuditingManager -> Volo.Abp.Auditing.AuditingHelper -> Volo.Abp.AuditLogging.AuditingStore. Autofac.Core.DependencyResolutionException: An exception was thrown while activating Volo.Abp.Auditing.AuditingManager -> Volo.Abp.Auditing.AuditingHelper -> Volo.Abp.AuditLogging.AuditingStore. ---> Autofac.Core.DependencyResolutionException: None of the constructors found on type 'Volo.Abp.AuditLogging.AuditingStore' can be invoked with the available services and parameters: Cannot resolve parameter 'Volo.Abp.AuditLogging.IAuditLogRepository auditLogRepository' of constructor 'Void .ctor(Volo.Abp.AuditLogging.IAuditLogRepository, Volo.Abp.Uow.IUnitOfWorkManager, Microsoft.Extensions.Options.IOptions`1[Volo.Abp.Auditing.AbpAuditingOptions], Volo.Abp.AuditLogging.IAuditLogInfoToAuditLogConverter)'.
See https://autofac.rtfd.io/help/no-constructors-bindable for more info. at Autofac.Core.Activators.Reflection.ReflectionActivator.<>c__DisplayClass14_0.
[10:53:46 INF] Request starting HTTP/2 GET https://localhost:5001/swagger/index.html - null null [10:53:47 INF] Request finished HTTP/2 GET https://localhost:5001/swagger/index.html - 200 null text/html;charset=utf-8 310.5244ms [10:53:47 INF] Request starting HTTP/2 GET https://localhost:5001/_framework/aspnetcore-browser-refresh.js - null null [10:53:47 INF] Request finished HTTP/2 GET https://localhost:5001/_framework/aspnetcore-browser-refresh.js - 200 13800 application/javascript; charset=utf-8 3.627ms [10:53:47 INF] Request starting HTTP/2 GET https://localhost:5001/_vs/browserLink - null null [10:53:47 INF] Request finished HTTP/2 GET https://localhost:5001/_vs/browserLink - 200 null text/javascript; charset=UTF-8 27.9902ms [10:53:47 INF] Request starting HTTP/2 GET https://localhost:5001/swagger/v1/swagger.json - null null [10:53:47 INF] Request finished HTTP/2 GET https://localhost:5001/swagger/v1/swagger.json - 200 null application/json;charset=utf-8 93.7021ms
-
0
Hi,
Cannot resolve parameter 'Volo.Abp.AuditLogging.IAuditLogRepository auditLogRepository' of constructor 'Void .ctor(Volo.Abp.AuditLogging.IAuditLogRepository, Volo.Abp.Uow.IUnitOfWorkManager,
It seems that the audit module dependencies are missing. you can add
Volo.Abp.AuditLogging.EntityframeworkCore
module or remove all Audit logger module packages. -
0
Hi,
Getting dependecy error on controller for Distributed Cache But I have registered that in DI container Step to reproduce the issue: run project and hit any controller of the API
You certainly cannot inject the services, I see that you have customized too many things.
Add
services.AddScoped(typeof(ICivitDistributedCache<>), typeof(CivitDistributedCache<>));
toConfigureDI
-
0
This is not easy work. you must have a deep understanding of ABP.
Many built-in features of ABP may not work, you need to carefully check the implementation of ABP.