Hello, I am creating an EF4 model for use with a WCF data service. I was planning on going th poco route however, I am a little disturbed by the fact that I must basically exactly model the db tables. I was hoping to be able create my own types composed
of data from more than one table and not including all data from a given table. At the very least, I need to be able to exclude columns such as the create and last modified dates for each of the columns. Is this not possible in Entity Framework? It seems like
I must be missing something since this is commonly available in other or/m tools.
TIA!