Florian Müller

Results 1 comments of Florian Müller

The `ToString` conversion is applied to a range and not the string span, which is wrong. https://github.com/borisdj/EFCore.BulkExtensions/blob/207eca010caf46174214ae04209fdce22e7ddd22/EFCore.BulkExtensions.PostgreSql/SqlAdapters/PostgreSql/PostgreSqlAdapter.cs#L215 This here is wrong: ```cs foreach (var entry in propertyName.AsSpan().Split(".")) { if (propertyValue...