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