Boris Djurdjevic
Boris Djurdjevic
Fix: ```C# bool isSqlServer = context.Database.ProviderName.EndsWith(DbServer.SqlServer.ToString()); string defaultSchema = isSqlServer ? "dbo" : null; Schema = entityType.GetSchema() ?? defaultSchema; ``` Will publish this fix in the next version.
Will take a look.
Yes you can delete them. What Db are you using, and do you have the latest version of the lib? One reason they could remain is if process breaks for...
Not exactly. Drop method is called even if there was an exception, but there have some occurrences where table remain, haven't been able to identify the issue nor to reproduce...
Try the latest version 8.0.2, it uses _Microsoft.Data.SqlClient_ 5.1.5 Also instead of main nuget you can use specific one per provider, so _EFCore.BulkExtensions.PostgreSql_ If the problem remains can you write...
Dextop.ux.SwissArmyGrid has 'columnModelOptions' field that you can use to achieve this. Just in .js file set it like this: var columnModelOptions = { apply: { CompanyType: { filterable: true, },...
The issue is caused by Microsoft.Data.SqlClient v 5.2.0. Maybe to keep it on 8.0.1 until it gets fixed, although 5.1.5 has some security related bug) Otherwise one possible temporary solution...
New package 8.0.4 with latest nugets published.
Ok, at the moment I am doing it alternative way, drop and create new. If you add support for it in the future, send me info, thanks.