New Post: Bulk Insert new Entities
I can't seem to figure out how to do this (maybe I can't). I want to create some new entities and just bulk insert them into a destination (EF modeled) database. Is that possible?
View ArticleNew Post: Bulk Insert new Entities
Entity Framework ETL was not really designed for this. However, I understand there is a need. I added a extension method for DbContext called SaveBatchedChanges. This will allow you to do batch inserts...
View ArticleNew Post: Bulk Insert new Entities
OK, well now I suppose I'm pushing the design even further. It doesn't take into account related objects. I have a parent object with some related objects. In code I can only set references of course...
View ArticleNew Post: Bulk Insert new Entities
The 1.0.8 nuget package lacks an Extensions namespace; I downloaded the code and referenced that. When I tried it, I hit the NotImplementedException in...
View ArticleNew Post: Bulk Insert new Entities
I uploaded 1.0.9. I removed the not implemented exceptions from the methods in the interceptor. I did not come across these methods during my tests. I tested with grandparent, parent, child...
View ArticleNew Post: Bulk Insert new Entities
OK, I'm essentially right back where I was. I have tables with a one-to-one relationship. It's like a Person table with Id as PK. And a PersonMisc table also with Id PK where PersonMisc has FK...
View Article