views:

125

answers:

2

In an application I'm writing I have a fairly complicated Database model. I'd like to use EF4 to map this to a whole lot nicer conceptual model. However all the tutorials I've read are with samples of 2 or 3 tables which all map 1 on 1 to the conceptual model.

I'd like to learn how to correctly map the database model to a different conceptual model using VS 2010. However I can't find any good tutorials or (preferabally) instruction video's.

Somebody got any tips, links or even books?

A: 

I'd have the same question. If someone can point to a tutorial, video, anything. Is conceptual model only supported in .Net 4? I'm using 3.5, would it work?

VST
> Is conceptual model only supported in .Net 4?I do think you should read some beginner's guide to EF to understand it's core concepts. http://msdn.microsoft.com/en-us/library/bb399567.aspx
Yury Tarabanko
+1  A: 

Here are some interesting mapping scenarios.

  • TPT, TPC, TPH hierarchy mapping
  • Entity splitting
  • Multiple entity sets per type.
Yury Tarabanko