public GeneralLibCollection FetchAll()
 {
     GeneralLibCollection coll = new GeneralLibCollection();
     Query qry = new Query(GeneralLib.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
 public GeneralLibCollection FetchByQuery(Query qry)
 {
     GeneralLibCollection coll = new GeneralLibCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
 public GeneralLibCollection FetchByID(object Id)
 {
     GeneralLibCollection coll = new GeneralLibCollection().Where("ID", Id).Load();
     return coll;
 }