Reputation: 1310
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"
Upvotes: 1
Views: 294
Reputation:
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
Upvotes: 2