Boris Djurdjevic

Results 267 comments of Boris Djurdjevic

I have also just tested it (1.0.17277.68) by creating new project that is targeting .NET Core 2.0 It works but has this warning that can be annoying. _(Warning NU1701 Package...

Temporary fix to hide the warning: In Solution Explorer select this library, then on it's Properties panel add following into NoWarn field: NU1701

Have you found a way to resolve this with some internal condition, without explicit config?

Would this work for your case, to add LIMIT only when DO NOTHING ```C# q = $"INSERT INTO {tableInfo.FullTableName} ({commaSeparatedColumns}) " + $"(SELECT {commaSeparatedColumns} FROM {tableInfo.FullTempTableName}) " + $"ON CONFLICT...

I'll fix it this way so that can publish new nuget. Will put with Bracket )...(, less chance of conflict with ON CONFLICT :D `q = q.Replace(") ON CONFLICT (",...

Actually I've refactored it the following way (cleaner): ```C# bool applySubqueryLimit = columnsToUpdate.Count == 0 || string.IsNullOrWhiteSpace(equalsColumns); var subqueryText = applySubqueryLimit ? "LIMIT 1 " : ""; q = $"INSERT...

NuGet 6.5.6 published, all Bulk ops supported. Kudos to @saeidbabaei-dev

What Database are all using, for SqlServer seems to work fine.