Rushino
Rushino

Reputation: 9505

How Entity Framework 4 domain mapping work exactly?

I know Linq to SQL work such as setting META attributes around your model. What i am looking to do is building my model then setting this model to work with EF 4.

Are the same approach working with EF 4 ?

Is this called the Code-First approach or its totally something else ?

Ive done some research but i can't seem to figure out how exactly to map a domain to work with EF 4. This include keys/relations integrity.

I would love to see a simple code example with some explanations.

Thanks.

Upvotes: 0

Views: 70

Answers (1)

Brian Mains
Brian Mains

Reputation: 50728

Model-first development allows you to build the model in the designer, then generate the database based on that model. Code-first allows you to generate the database based on your code, or use the code to work with an existing database too.

Both those options are viable; for code-first, V5 has a lot of improvements you will want to look out for.

HTH.

Upvotes: 1

Related Questions