Hi.
I hav a gridview, it works when old entites are in the collection because all of these are proxies of the real entity.
But if i insert a new Entity using
context.User.AddObject(user);
context.SaveChanges();
The databind to the grid crashes with error, "Object does not match target type", because the old object are proxies of the real POCO, while the new object is of Type User... How do i fix this?
Thanks
View Complete Post