I have entities:
BaseEntity (Base Class & Abstract)
DerivedOne (based on BaseEntity)
DerivedTwo (based on BaseEntity)
...
Is it possible to build a list (collection) of BaseEntity
but contains instance of the derived classes only?
Thanks
EDIT
I mean is it possible to create the list using NBuilder Build<BaseEntity>