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