Hi folks,
i'm under the impression that
- EF with POCO: allows you to map your own POCO's to the entities on the model (.edmx).
- EF Code-Only: no edmx / model designer (ie. CSDL/SSDL/MSL (collectively EDMX) metadata). Still POCO's but the mappings, relationships, navigation, etc are all manually coded (hence the code-only, description).
If this description of the two concepts is (more or less) correct, why would someone what to do a Code-Only instead of EF with POCO?
Both are doing POCO's, but the 2nd one has the extra burden of having to also do the mapping, manually?