RudeySH
RudeySH
You can solve this using reflection. I have done it before, you have to build the `updateSpecification` parameter manually using reflection. Keep in mind that when doing so, you have...
@SuperGodTao that's a great start. I suggest adding the following: // skip primary key properties if (Attribute.IsDefined(item, typeof(KeyAttribute))) { continue; } // skip generated properties if (Attribute.IsDefined(item, typeof(DatabaseGeneratedAttribute))) { continue;...
EFBulkInsert is not a replacement for this library, though. It only provides bulk insert, no update or delete. @schweinsbauch I have been using your fork for a while. However, today...
@schweinsbauch I will be publishing a NuGet package soon!
@frankiea It took me a while, but I have finally published a NuGet package of my fork. https://www.nuget.org/packages/RudeySH.EFUtilities/
@Gensplejs you might have already noticed it but I merged your pull request, a while ago actually.
This can be caused by Glimpse, specifically Glimpse.Ado or Glimpse.EF6.
FYI, I merged #127 and #128 into my fork of EntityFramework.Utilities, https://github.com/RudeySH/EntityFramework.Utilities.
There are numerous pending pull requests that fix this issue. Unfortunately this repository is dead. I am maintaining a fork of EntityFramework.Utilities, which can be found [here](https://github.com/RudeySH/EntityFramework.Utilities). In my fork...
There is now a NuGet package of my fork available here: https://www.nuget.org/packages/RudeySH.EFUtilities/