This is how I learned to use Entity Framework 4.1 POCO
I learned how to code Entity Framework 4.1 POCO data access in the last several months from various web site. I think it would be nice to post the links here so that others can benefit from them.
* Using this tutorial to learn Code First EF
* Need to first get the ADO.Net Entity Framework
4.1 before you can do CodeFirst EF
* Code First does NOT support stored proc. So you need to either do Stored Proc edmx
way, or do it the Old School ADO.Net way.
- http://stackoverflow.com/questions/4845246/does-entity-framework-code-first-support-stored-procedures
- http://stackoverflow.com/questions/5001441/using-stored-procedures-with-entity-framework-4-code-first-ctp5
* Found that connection string is ultra-critical
for the success of using PoCo EF.
* We are NOT doing auto-pluralize data object
name. And here’s the solution of stopping
auto-pluralize data object name:
* Some more reason on why we should use POCO:
- http://stackoverflow.com/questions/3421278/why-would-i-want-to-use-pocos
- http://stackoverflow.com/questions/2635953/what-are-the-big-advantages-to-have-poco-with-orm
- http://stackoverflow.com/questions/2672409/what-is-entity-framework-with-poco
- http://stackoverflow.com/questions/2478081/entity-framework-4-poco-where-to-start
* Definite key for the EF POCO object: (GREAT
article)
* Encountered multiple filed for foreign key
issue?
... well, this seems to be the right answer
(and yes, some day I will learn how to format my blog better too ... some day ...)
