In Entity Framework, you must create a class that derives from DbContext with IDbSet properties. What in Entity Framework calls the setters and how does this work?
DbContext
EF uses reflection to discover IDbSet properties on DbContext derived classes and sets them accordingly.