Rishabh Ohri
Rishabh Ohri

Reputation: 1310

Entity classes created using ADO.NET Entity Framework?

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

Answers (1)

user57508
user57508

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

Related Questions