-
Notifications
You must be signed in to change notification settings - Fork 175
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Batch Update doesn't work with table schema. #122
Comments
I am having the same issue. Using SQL Profiler I can see that it creates the temp table in the schema but on the last step it ignores the schema when applying the UPDATE back to the main table. |
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. In my fork I have merged most useful pending pull requests. It includes a fix for the table schema problem. I don't have a NuGet package for it yet, so if you want to use it you'll have to download the project and build the DLL file yourself. |
Thanks for the advise Rudey, I knew this repo was kind of dead. Such a shame because it is such a great tool. I will see if I can use your fork. |
There is now a NuGet package of my fork available here: https://www.nuget.org/packages/RudeySH.EFUtilities/ |
I tried to use Batch update but it doesn't work with table schema. I am using database first model and i annotated my Schema class but update query i see in profiler without schema.
The text was updated successfully, but these errors were encountered: