views:

418

answers:

1

I've been looking at the new Entity Framework 4 Code Only features, and I really like them. But I'm having a hard time finding good resource on the feature. Everything seems to be spread around blongs here and there, so this make me wonder if it's ready to be used for a serious project?

What do you think? Is it ready for production use or should I use the more traditional approach (EDMX designer, POCO objects)?

Also, I would like to know if there are any features that Code Only does not support yet, compared to the EDMX designer?

What do you think about the Code Only feature? Is it "mature" yet?

Thank you.

+2  A: 

It depends when your project should be ready. Code First (Code Only) is only in CTP3 without go-live license. As I've read, there is no exact timeframe for the Feature Pack http://stackoverflow.com/questions/2633619/where-is-entityconfiguration-in-ef4-vs-2010-rtm and it will be published when it will be ready (no release date). According to the blog of EF team it will be available in the next framework release.

Code First is still under active development and will have some breaking changes so there is no go-live licence at this time.

http://blogs.msdn.com/b/adonet/archive/2010/02/18/entity-framework-feature-ctp-3-now-available.aspx

Code First = Code Only

In my projects I went with EF + POCO for now.

nubm
have there been updates on this issue ?
Alexandre Brisebois
Yes, CTP4 is out for some time. http://blogs.msdn.com/b/adonet/archive/2010/07/14/ctp4announcement.aspx
nubm

related questions