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; }
public URLTagCollection FetchByID(object Id) { URLTagCollection coll = new URLTagCollection().Where("ID", Id).Load(); return coll; }