I'm using Entity Framework (1st time) on a SQL 2005 database for a data migration and found this very odd behavior...
Up till now I never had to call the AddObject method to persist new records. SaveChanges always did the trick, so I figured the entity constructor always hooked the new entity to the data context.
Now I added migration for another entity type and suddenly only about 20% of those records are persisted, so now I do have to call the AddObject method for that entity type. Anyone can explain how this behavior works?
tnx