Hello everyone. While my project's migration this warning appears;
-[WRN] Savepoints are disabled because Multiple Active Result Sets (MARS) is enabled. If 'SaveChanges' fails, then the transaction cannot be automatically rolled back to a known clean state. Instead, the transaction should be rolled back by the application before retrying 'SaveChanges'. See https://go.microsoft.com/fwlink/?linkid=2149338 for more information. To identify the code which triggers this warning, call 'ConfigureWarnings(w => w.Throw(SqlServerEventId.SavepointsDisabledBecauseOfMARS))'.
İf I add my connection string to this parametre:"MultipleActiveResultSets=true" this warning shows itselfs.
1-What are the side effects of this warning ? Will block my next migrations ? 2-Should I use this parametre?(MultipleActiveResultSets=true)
Hello everyone. I have a project built by ABP Framework. Everything seems good right now. But I have an issue to solve. I created a new tenant. After that, if I want to login with this new tenant the system is not responding to me. Actually, I solve this issue. We should create a new tenant in the database. But I think these processes are done automatically when I create a new tenant.
Hello coders. I created a project using ABP stuffs. But i see that is ABP has multi language support UI and Backend side. I want to use my project on single language. How can i remove basic ABP multi language support? Thanks all.