public FilesystemCollection FetchAll()
 {
     var coll = new FilesystemCollection();
     var qry = new Query(Filesystem.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
 public FilesystemCollection FetchByQuery(Query qry)
 {
     var coll = new FilesystemCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
 public FilesystemCollection FetchByID(object Guid)
 {
     FilesystemCollection coll = new FilesystemCollection().Where("GUID", Guid).Load();
     return coll;
 }