Boris Djurdjevic
Boris Djurdjevic
`GetDataTable` was made public, and will review any PR made regarding this proposal.
Currently that feature is supported only on SqlServer. Will see to extend it soon for PG as well.
Currently that feature is supported only on SqlServer. Will see to extend it soon for PG as well.
Not yet, at the moment that feature only for SqlServer.
Navigation prop. support was added in 3.2.1 https://github.com/borisdj/EFCore.BulkExtensions/issues/139 You can check it on test **_ShadowFKPropertiesTest_** with `ItemLink`. If still having issues try to alter that test to reproduce it.
I was referring to this Test: https://github.com/borisdj/EFCore.BulkExtensions/blob/ebc6d2786fd9e24f4820524330558cb00c3f19d4/EFCore.BulkExtensions.Tests/EFCoreBulkTestAtypical.cs#L432 or in v3 branch: https://github.com/borisdj/EFCore.BulkExtensions/blob/53609bb6151bc0884692e68d513cfa773522074b/EFCore.BulkExtensions.Tests/EFCoreBulkTestAtypical.cs#L340 If you do not plan upgrading to v5 until 6 is fully released, which is soon, then keep...
I have confirmed that FK remains Null even on current version. The issue being current value is here null, not sure why. https://github.com/borisdj/EFCore.BulkExtensions/blob/ebc6d2786fd9e24f4820524330558cb00c3f19d4/EFCore.BulkExtensions/SQLAdapters/SQLServer/SqlServerAdapter.cs#L688
How do you reproduce this problem? In RunUpdate test it works without issue: `PropertiesToInclude = new List { nameof(Item.Description) },`
Try this fix at the moment: https://github.com/dotnet/efcore/issues/20780
Use explicit call like this: ```C# protected override void ConfigureEntity(EntityTypeBuilder builder) { builder.HasIndex(it => it.UserId); Expression expr = it => new { it.DeletedDate }; SqlServerIndexBuilderExtensions.IncludeProperties(builder, expr); } ```