public EntityCollectionView(DataLoader <T> dataLoader = null, bool autoLoad = true)
 {
     this.DataLoader = dataLoader;
     this.AutoLoad   = autoLoad;
     this.Dispatcher = Deployment.Dispatcher;
 }
 public EditableEntityCollectionView(DataLoader <T> dataLoader = null)
     : base(dataLoader)
 {
 }