We are still stucked with this, can you give us more detail instructions how to solve this issue? It is very important since we can not have benefits of unit testing.
Hi @ismcagdas, if user is logged in PC with active directory account we want to enable him access to application without logging in the application.
Hello @ismcagdas, to make myself clear, I can make custom accordian functionality but I would like to use Metronic theme components since they exist already and since Metronic is part of ASP.NET Zero framework. I am aware that I can install and use opensource libraries but my question was strictly related to Metronic theme components.
Hello @ismcagdas my question was more generic not only accordion related, what about all other Metronic theme components?
@<span class="colour" style="color: rgb(0, 0, 0);">ismcagdas just to remind you for this ticket.</span>
Hi @ismcagdas it is latest 7.0.0.
Hi,
Actually, this was not a solution but I found what was my problem. I was using data annotation in my models e.g. [Column(TypeName = "NVARCHAR(MAX)")] but this was unnecessary since EF will set it to MAX by default. So this cause problem with SQLite.
Yes, it works thank you!!
I've tried to call that method on a few places
- in Startup.cs Configure method
using (var scope = app.ApplicationServices.CreateScope()) { scope.ServiceProvider.GetService<DatabaseUpdateHelper>().Update(); }
- in RIMIKSXEntityFrameworkCoreModule.cs in PostInitialize using (var scope = IocManager.CreateScope()) { scope.Resolve<DatabaseUpdateHelper>().Update(); }
- I tried in PreInitialize and Initialize but didn't work either
RIMIKSX.EntityFrameworkCore.DatabaseUpdateHelper is helper class with one method Update which calls context.Database.Migrate()
It was my mistake, everything I did fine but backend was not published correctly :)