예제 #1
0
 public SysVersionCollection FetchAll()
 {
     SysVersionCollection coll = new SysVersionCollection();
     Query qry = new Query(SysVersion.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
예제 #2
0
 public SysVersionCollection FetchByQuery(Query qry)
 {
     SysVersionCollection coll = new SysVersionCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
예제 #3
0
 public SysVersionCollection FetchByID(object PkIntID)
 {
     SysVersionCollection coll = new SysVersionCollection().Where("PK_intID", PkIntID).Load();
     return coll;
 }