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?
From MSDN:
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>
:For a bonus tip - if possible, use
IObjectSet<T>
to facilitate unit testing (implement a mock one - e.g an in-memory static list).