Getting started with Entity Framework in VS.NET 2008

What exactly do I need to get started with Entity Framework in VS.net 2008?

I download SP1 for vs .net 2008, when I print this, nothing else that I am missing?

From what I understand, will I have to create some XML and then use the .exe tool to spill the code?

+4
source share
2 answers

This question is asked before here ...

However, I will repeat my answer to this question: This question has a list of some textbooks .

This is a useful Entity Framework forum.

For me, the most helpful link for learning the Entity Framework when I started using it was Daniel Simmons FAQ . Check this!

+4
source

VS2008 SP1 comes with Entity Framework and a designer for EF project elements (ADO.NET entity data model), but you can also use command line tools if you need fine-grained control.

So, once you install SP, you will be fine.

0
source

Source: https://habr.com/ru/post/1277648/


All Articles