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