Example #1
0
 public TParaListCollection FetchAll()
 {
     TParaListCollection coll = new TParaListCollection();
     Query qry = new Query(TParaList.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Example #2
0
 public TParaListCollection FetchByQuery(Query qry)
 {
     TParaListCollection coll = new TParaListCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Example #3
0
 public TParaListCollection FetchByID(object ParaId)
 {
     TParaListCollection coll = new TParaListCollection().Where("Para_ID", ParaId).Load();
     return coll;
 }