Working directly with EntitySet?

1k Views Asked by At

I'm trying to wrap my head around all the classes present in Entity Framework 4. The only one that I'm confused by (so far) is EntitySet. EntitySets are never mentioned anywhere in the generated C# code from my .edmx files, only in the XML files (.csdl, .msl, .ssdl).

ObjectSet seems to be a wrapper around EntitySet (although it also exposes the EntitySet as a public property.) Are there any cases where I will be directly working with EntitySets?

1

There are 1 best solutions below

0
On

From MSDN:

A logical container for entities of a given type and its subtypes. Entity sets are mapped to tables in a database.

Essentially, it's CSDL talk - as to which "set" of entities the objects are mapped to.

You don't need to worry about it - you'll be working with ObjectSet<T>:

var orders = ctx // ObjectContext
             .Orders // ObjectSet<Order>
             .SingleOrDefault(); // Order

For a bonus tip - if possible, use IObjectSet<T> to facilitate unit testing (implement a mock one - e.g an in-memory static list).