- ABP Framework version: v4.4.2
- UI type: Angular
- DB provider: EF Core
- Tiered (MVC) or Identity Server Separated (Angular): yes
Hi,
I'm currently using the microservice template.
The IQueryable and Async section of this doc: https://docs.abp.io/en/abp/4.4/Repositories#iqueryable-async-operations talks about adding Volo.Abp.EntityFrameworkCore to the application layer so that you can access various EF Core aysnc methods such as ToListAsync.
I've attempted to do this, but Volo.Abp.EntityFrameworkCore is not compatible with the version of .net standard 2 that’s being used by default in the application layer (2.0.3).
Am i missing something? Is it just a case of upgrading .net standard to 2.1?
Cheers,
Steve.
5 Answer(s)
-
0
-
0
Hi,
I assume the docs were created when the framework was targeting .net core 3 then?
Are there any plans to update to .net standard to 2.1?
Cheers,
Steve.
-
0
hi
You can consider to use
IAsyncQueryableExecuter
, it's target tonetstandard2.0
.https://docs.abp.io/en/abp/latest/Repositories#option-3-iasyncqueryableexecuter
-
0
I'll take a look at that, thanks,
Steve.
-
0
You're welcome.