hi
What do you mean environment parameters ?
; )
hi
https://support.abp.io/QA/Questions/5037/How-do-we-get-support-with-Blazorise#answer-3a0b3114-427d-f26e-4cc5-88ff791f3ff3
ok, I wil check it asap. Thanks
Thanks for your further info. I will wait to check your new logs.
Set the ef core log level to Debug
.MinimumLevel.Override("Microsoft.EntityFrameworkCore", LogEventLevel.Debug)
and EnableSensitiveDataLogging
Configure<AbpDbContextOptions>(options =>
{
/* The main point to change your DBMS.
* See also BookStoreMigrationsDbContextFactory for EF Core tooling. */
options.UseSqlServer();
options.Configure(configureOptions =>
{
configureOptions.DbContextOptions.EnableSensitiveDataLogging();
});
});
hi
Can you try a new template project in your environment?
ok, Thanks