public URLTagCollection FetchAll() { URLTagCollection coll = new URLTagCollection(); Query qry = new Query(URLTag.Schema); coll.LoadAndCloseReader(qry.ExecuteReader()); return coll; }
public URLTagCollection FetchByQuery(Query qry) { URLTagCollection coll = new URLTagCollection(); coll.LoadAndCloseReader(qry.ExecuteReader()); return coll; }