You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
notice: efcore 3.0 only works on netcoreapp3.0, net461 will use efcore 2.2 instead
it's recommended to use nhibernate because it's much stable and have backward compatibility
notice: if you upgrade from an exists Asp.NET Core project and set the framework to netcoreapp3.0,
please replace .UseKestrel() to .UseKestrel(options => options.AllowSynchronousIO = true)
in Program.cs under {ProjectName}.AspNetCore project.
Add plugin hot reloading support for .NET Core 3.0
notice: it will disable lazy loading support for efcore (see #18272 in efcore repo)
as a workaround, you can disable plugin reloading by setting
"Extra"."ZKWeb.DisableAutomaticPluginReloading" to true in App_Data/config.json
there no hot reloading support for .NET Framework because microsoft will drop it in the future