views:

67

answers:

1

What is the type of Entity classes created by the Entity Framework which map to the database tables? Are these classes like the classes created using the LINQ to SQL designer and are defined as "partial classes"

+2  A: 

from the .designer-file of my .edmx-file, eg

public partial class City : global::System.Data.Objects.DataClasses.EntityObject

see msdn for more information about EntityObject

Andreas Niedermair