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