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