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