Doubt in studying the Code First development approach

2

I am currently studying the development approaches used in the Entity Framework 6 approaches Model First and Database First I found the content on the internet easily and I understood, but the Code First approach is really complicated to find the specific content of version 6, can I study code first using the examples in versions 4.1? Does it really change that much?

    
asked by anonymous 17.12.2015 / 18:34

1 answer

2
  

Can I study code first using the examples from versions 4.1?

You can but avoid using the EDMX approach, which is already outdated. -asp-net-mvc-application "> The best tutorial I know is this and soon I should be writing a course in Portuguese with several additions. If interested, only manifest by comment.

  

Does it really change that much?

The point is that several things were dropped, like what I said about the EDMX above. The problem with EDMX is that it requires the central template file to always be up to date, and does not allow for a very extensive tailoring of the fields and validations of your Models .

Today's approach focuses on making the programmer as free as possible for design possibilities, and EDMX does a lot of that.

    
17.12.2015 / 18:43