Download EF POCO Adapter Update - Entity Framework
I mentioned the release of the EF POCO Adapter for the Entity Framework before:
Some bugs were found and a new 1.02 version was released. The following changes happened to the EF POCO Adapter:
- Detached proxies (created by EFPocoContxt.CreateObject<T>) as well as proxies in the Added state were failing on property navigation. This has been fixed, and the property navigation doesn't attempt the load in one of these states.
- GetAdapterObject() was failing for proxies created with CreateObject<T>. This has been fixed by ensuring that adapters are always cached whenever proxies are present. As a side effect of this change, DetectChanges() should be a bit faster, as we don't have to walk object state manager anymore.
- Fixed code generator to eliminate compilation warning of unused property.
You can download the latest version of the EF POCO Adapter here.
Tags:
ADONETEntityFramework,
EntityFramework