which version of AspNetZero you are using?
You can try using dotnet
cli for build
/run
if vs2017 is performing poorly for you
Configuration.UnitOfWork.IsolationLevel = System.Transactions.IsolationLevel.ReadCommitted;
This does not perform sql commit. it is just a configuration to how ef/core reads the data.
ReadCommitted 4096 Shared locks are held while the data is being read to avoid dirty reads, but the data can be changed before the end of the transaction, resulting in non-repeatable reads or phantom data.
See isolationlevel
you can try using HasMaxLength
instead of HasColumnType
.
See EfCore#MaxLength
you can follow the guide for azure here
you can try exclude source map during the building process.
see the approach discussed at github
Do you see similar error outside of AbpUserConfigurationController.GetAll()
?
you can try this approach to format the date value before sending the data to the server.
have you tried nugest restore and clean + rebuild your solution?
as described in your error log,
System.Collections.Concurrent
has conflict between the version netstandard 1.3
and netstandard 2.0
which AspNetZero version you are using ?
could you log the value of AbpSession.TenantId to see if it is the correct tenant (or host) that you want ?
i assumed that your project is using EFCore
in the testing setup (which is the default configuration).
note that the test you have mentioned was using Effort.EF6
.
see related issue at aspnetboilerplate/issues/2144