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